Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/pandas/tseries/__init__.py: 50%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

1# ruff: noqa: TCH004 

2from typing import TYPE_CHECKING 

3 

4if TYPE_CHECKING: 

5 # import modules that have public classes/functions: 

6 from pandas.tseries import ( 

7 frequencies, 

8 offsets, 

9 ) 

10 

11 # and mark only those modules as public 

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