diff --git a/app/dao/monthly_billing_dao.py b/app/dao/monthly_billing_dao.py index 4efef0e7d..606c02cc9 100644 --- a/app/dao/monthly_billing_dao.py +++ b/app/dao/monthly_billing_dao.py @@ -1,7 +1,5 @@ from datetime import datetime -from sqlalchemy import func - from app import db from app.dao.dao_utils import transactional diff --git a/tests/app/dao/test_monthly_billing.py b/tests/app/dao/test_monthly_billing.py index 24359af3a..23c445f92 100644 --- a/tests/app/dao/test_monthly_billing.py +++ b/tests/app/dao/test_monthly_billing.py @@ -3,7 +3,6 @@ from dateutil.relativedelta import relativedelta from freezegun import freeze_time from functools import partial -from app import db from app.dao.monthly_billing_dao import ( create_or_update_monthly_billing, get_monthly_billing_entry,