Skip to content

Commit 19863b1

Browse files
committed
Use from-as import to prevent mypy --no-implicit-reexport error
1 parent 4f0b3cf commit 19863b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sqlalchemy_file/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
__version__ = "0.5.0"
22

3-
from .file import File
4-
from .types import FileField, ImageField
3+
from .file import File as File # noqa
4+
from .types import FileField as FileField # noqa
5+
from .types import ImageField as ImageField # noqa

0 commit comments

Comments
 (0)