Coverage for /home/runner/.local/share/hatch/env/virtual/importnb/KA2AwMZG/test.interactive/lib/python3.9/site-packages/importnb/_version.py: 77%

11 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-11-02 04:03 +0000

1# file generated by setuptools_scm 

2# don't change, don't track in version control 

3TYPE_CHECKING = False 1abcdef

4if TYPE_CHECKING: 4 ↛ 5line 4 didn't jump to line 5, because the condition on line 4 was never true1abcdef

5 from typing import Tuple, Union 

6 VERSION_TUPLE = Tuple[Union[int, str], ...] 

7else: 

8 VERSION_TUPLE = object 1abcdef

9 

10version: str 1abcdef

11__version__: str 1abcdef

12__version_tuple__: VERSION_TUPLE 1abcdef

13version_tuple: VERSION_TUPLE 1abcdef

14 

15__version__ = version = '2023.11.1' 1abcdef

16__version_tuple__ = version_tuple = (2023, 11, 1) 1abcdef