Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/pandas/io/__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.io import ( 

7 formats, 

8 json, 

9 stata, 

10 ) 

11 

12 # mark only those modules as public 

13 __all__ = ["formats", "json", "stata"]