Skip to content

Commit

Permalink
Improve imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Aug 6, 2023
1 parent 2316193 commit 4008338
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion mimesis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@
Transport,
)
from mimesis.schema import Field, Fieldset, Schema
from mimesis.exceptions import (
LocaleError,
SchemaError,
NonEnumerableError,
FieldError,
FieldsetError,
)

__all__ = [
"Address",
Expand Down Expand Up @@ -115,6 +122,12 @@
"TLDType",
"URLScheme",
"VideoFile",
# Exceptions:
"LocaleError",
"SchemaError",
"NonEnumerableError",
"FieldError",
"FieldsetError",
# Meta:
"__version__",
"__title__",
Expand All @@ -125,7 +138,7 @@
"__license__",
]

__version__ = "10.1.0"
__version__ = "10.2.0"
__title__ = "mimesis"
__description__ = "Mimesis: Fake Data Generator."
__url__ = "https://github.com/lk-geimfari/mimesis"
Expand Down

0 comments on commit 4008338

Please sign in to comment.