Skip to content

Commit

Permalink
Add __all__ to __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Oct 7, 2023
1 parent 76c3535 commit 69d94d6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tblfaker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
from .__version__ import __author__, __copyright__, __email__, __license__, __version__
from ._common import get_locals, get_providers
from ._tblfaker import TableFaker


__all__ = (
"__author__",
"__copyright__",
"__email__",
"__license__",
"__version__",
"get_locals",
"get_providers",
"TableFaker",
)

0 comments on commit 69d94d6

Please sign in to comment.