__init__.py 217 B

12345678
  1. from typing import TYPE_CHECKING
  2. if TYPE_CHECKING:
  3. # import modules that have public classes/functions
  4. from pandas.io.formats import style
  5. # and mark only those modules as public
  6. __all__ = ["style"]