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
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
1# ruff: noqa: TCH004
2from typing import TYPE_CHECKING
4if TYPE_CHECKING:
5 # import modules that have public classes/functions
6 from pandas.io import (
7 formats,
8 json,
9 stata,
10 )
12 # mark only those modules as public
13 __all__ = ["formats", "json", "stata"]