Coverage for /var/srv/projects/api.amasfac.comuna18.com/tmp/venv/lib/python3.9/site-packages/pandas/io/__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.io import ( 

6 formats, 

7 json, 

8 stata, 

9 ) 

10 

11 # and mark only those modules as public 

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