diff --git a/data/billing.py b/data/billing.py index 8c604aac2..e1510c054 100644 --- a/data/billing.py +++ b/data/billing.py @@ -3,7 +3,7 @@ import stripe from datetime import datetime, timedelta from calendar import timegm -from util.collections import AttrDict +from util.morecollections import AttrDict PLANS = [ # Deprecated Plans diff --git a/data/migrations/env.py b/data/migrations/env.py index 863e3d98f..d64cf4ee7 100644 --- a/data/migrations/env.py +++ b/data/migrations/env.py @@ -8,7 +8,7 @@ from peewee import SqliteDatabase from data.database import all_models, db from app import app from data.model.sqlalchemybridge import gen_sqlalchemy_metadata -from util.collections import AttrDict +from util.morecollections import AttrDict # this is the Alembic Config object, which provides # access to the values within the .ini file in use. diff --git a/util/collections.py b/util/morecollections.py similarity index 100% rename from util/collections.py rename to util/morecollections.py