From a97df7d24abda09cdd2e17718fb5b2d25d419525 Mon Sep 17 00:00:00 2001 From: Jennifer Taylor Date: Sat, 2 Oct 2021 23:12:46 +0000 Subject: [PATCH] Fix some small typing issues with newest mypy. --- bemani/data/data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bemani/data/data.py b/bemani/data/data.py index f7e4d5d..3b62673 100644 --- a/bemani/data/data.py +++ b/bemani/data/data.py @@ -1,6 +1,6 @@ import os -import alembic.config # type: ignore +import alembic.config from alembic.migration import MigrationContext # type: ignore from alembic.autogenerate import compare_metadata # type: ignore from sqlalchemy import create_engine # type: ignore @@ -153,7 +153,7 @@ class Data: ] alembicArgs.extend(args) os.chdir(base_dir) - alembic.config.main(argv=alembicArgs) + alembic.config.main(argv=alembicArgs) # type: ignore def create(self) -> None: """