Skip to content

Commit

Permalink
Use from-as import to prevent mypy --no-implicit-reexport error
Browse files Browse the repository at this point in the history
  • Loading branch information
jowilf committed Oct 7, 2023
1 parent 4f0b3cf commit 19863b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sqlalchemy_file/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
__version__ = "0.5.0"

from .file import File
from .types import FileField, ImageField
from .file import File as File # noqa
from .types import FileField as FileField # noqa
from .types import ImageField as ImageField # noqa

0 comments on commit 19863b1

Please sign in to comment.