diff options
author | 2023-11-13 14:24:46 +0000 | |
---|---|---|
committer | 2023-12-06 10:31:28 +0000 | |
commit | 2eff2c7958150c5b206fd8388efdf16e726ebb1a (patch) | |
tree | aa71d0dbbbada2d8206579632f8d5d143c8be5fa /alembic/env.py | |
parent | Bump all deps to latest (diff) |
Lint repo with new ruff rules
Diffstat (limited to 'alembic/env.py')
-rw-r--r-- | alembic/env.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alembic/env.py b/alembic/env.py index 61b0843..6fced40 100644 --- a/alembic/env.py +++ b/alembic/env.py @@ -9,8 +9,8 @@ from alembic import context sys.path.append(".") -from metricity.database import build_db_uri # noqa: E402, I001 -from metricity.models import Base # noqa: E402 +from metricity.database import build_db_uri # noqa: E402 +from metricity.models import Base # noqa: E402 # this is the Alembic Config object, which provides # access to the values within the .ini file in use. |