Skip to content

Commit

Permalink
Fix __all__ for mimesis
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Jan 10, 2024
1 parent a966d5b commit 5e0bde3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion mimesis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
from mimesis.schema import Field, Fieldset, Schema

__all__ = [
# Providers:
"Address",
"BaseDataProvider",
"BaseProvider",
Expand All @@ -92,16 +93,21 @@
"Text",
"Transport",
"Cryptographic",
# Has all:

# Generic provider:
"Generic",

# Keys:
"keys",

# Schema:
"Field",
"Fieldset",
"Schema",

# Locale:
"Locale",

# Enums:
"Algorithm",
"AudioFile",
Expand All @@ -127,6 +133,7 @@
"URLScheme",
"VideoFile",
"EmojyCategory",

# Exceptions:
"LocaleError",
"SchemaError",
Expand All @@ -135,6 +142,7 @@
"FieldsetError",
"FieldArityError",
"FieldNameError",

# Meta:
"__version__",
"__title__",
Expand Down

0 comments on commit 5e0bde3

Please sign in to comment.