Skip to content

Commit 081756b

Browse files
author
Adrià Garriga-Alonso
authored
Merge pull request #1 from AlignmentResearch/bugfix/package-namespace-conflict
Fix duplicated package namespace aim.storage.utils
2 parents beba603 + 1e0365e commit 081756b

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

aim/storage/migrations/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from alembic.config import Config
1010
from sqlalchemy import create_engine
1111

12-
import aim.storage.utils.drop_table_cascade # noqa: F401
12+
import aim.storage.drop_table_cascade # noqa: F401
1313

1414

1515
# this is the Alembic Config object, which provides

aim/storage/structured/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from sqlalchemy import create_engine
1313
from sqlalchemy.orm import scoped_session, sessionmaker
1414

15-
import aim.storage.utils.drop_table_cascade # noqa: F401
15+
import aim.storage.drop_table_cascade # noqa: F401
1616

1717
class ObjectCache:
1818
def __init__(self, data_fetch_func, key_func):

aim/web/api/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from sqlalchemy.ext.declarative import declarative_base
1010
from sqlalchemy.orm import sessionmaker
1111

12-
import aim.storage.utils.drop_table_cascade # noqa: F401
12+
import aim.storage.drop_table_cascade # noqa: F401
1313

1414
engine = create_engine(
1515
get_db_url(),

0 commit comments

Comments
 (0)