Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Jun 9, 2024
1 parent 700ea33 commit 5d93322
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mimesis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
License: MIT License.
"""

from mimesis import keys
from mimesis.enums import (
from . import keys
from .enums import (
Algorithm,
AudioFile,
CardType,
Expand All @@ -35,7 +35,7 @@
URLScheme,
VideoFile,
)
from mimesis.exceptions import (
from .exceptions import (
FieldArityError,
FieldError,
FieldNameError,
Expand All @@ -44,8 +44,8 @@
NonEnumerableError,
SchemaError,
)
from mimesis.locales import Locale
from mimesis.providers import (
from .locales import Locale
from .providers import (
Address,
BaseDataProvider,
BaseProvider,
Expand All @@ -69,7 +69,7 @@
Text,
Transport,
)
from mimesis.schema import Field, Fieldset, Schema
from .schema import Field, Fieldset, Schema

__all__ = [
# Providers:
Expand Down

0 comments on commit 5d93322

Please sign in to comment.