__init__.py 276 B

123456789101112
  1. from typing import TYPE_CHECKING
  2. if TYPE_CHECKING:
  3. # import modules that have public classes/functions
  4. from pandas.io import (
  5. formats,
  6. json,
  7. stata,
  8. )
  9. # and mark only those modules as public
  10. __all__ = ["formats", "json", "stata"]