We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a382af9 commit 14c9313Copy full SHA for 14c9313
migration/env.py
@@ -1,5 +1,5 @@
1
from logging.config import fileConfig
2
-from chronogram.database.schema import *
+from chronogram.database.schema import * # noqa F403
3
from sqlalchemy import engine_from_config
4
from sqlalchemy import pool
5
from config import config as cfg
@@ -18,7 +18,7 @@
18
# for 'autogenerate' support
19
# from myapp import mymodel
20
# target_metadata = mymodel.Base.metadata
21
-target_metadata = Base.metadata
+target_metadata = Base.metadata # noqa F405
22
23
# other values from the config, defined by the needs of env.py,
24
# can be acquired:
0 commit comments