Coverage for /var/srv/projects/api.amasfac.comuna18.com/tmp/venv/lib/python3.9/site-packages/pandas/tseries/__init__.py: 50%

4 statements  

« prev     ^ index     » next       coverage.py v6.4.4, created at 2023-07-17 14:22 -0600

1from typing import TYPE_CHECKING 

2 

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

4 # import modules that have public classes/functions: 

5 from pandas.tseries import ( 

6 frequencies, 

7 offsets, 

8 ) 

9 

10 # and mark only those modules as public 

11 __all__ = ["frequencies", "offsets"]