0e045fbfd63a2b5f688862d4bce06b94c892ab89
[babeltrace.git] / tests / utils / python / utils.py
1 # SPDX-License-Identifier: MIT
2 #
3 # Copyright (c) 2023 EfficiOS, Inc.
4
5 # The purpose of this import is to make the typing module easily accessible
6 # elsewhere, without having to do the try-except everywhere.
7 try:
8 import typing as typing_mod # noqa: F401
9 except ImportError:
10 import local_typing as typing_mod # noqa: F401
This page took 0.029284 seconds and 3 git commands to generate.