mirror of
https://github.com/GSA/notifications-api.git
synced 2026-01-31 23:26:23 -05:00
Run auto-correct on app/ and tests/
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import pytest
|
||||
|
||||
from app.models import Notification, INVITE_PENDING
|
||||
|
||||
from app.models import INVITE_PENDING, Notification
|
||||
from tests.app.db import create_invited_org_user
|
||||
|
||||
|
||||
|
||||
@@ -1,23 +1,25 @@
|
||||
from datetime import datetime
|
||||
|
||||
import uuid
|
||||
from datetime import datetime
|
||||
|
||||
import pytest
|
||||
from freezegun import freeze_time
|
||||
|
||||
from app.dao.organisation_dao import (
|
||||
dao_add_service_to_organisation,
|
||||
dao_add_user_to_organisation,
|
||||
)
|
||||
from app.dao.services_dao import dao_archive_service
|
||||
from app.models import Organisation
|
||||
from app.dao.organisation_dao import dao_add_service_to_organisation, dao_add_user_to_organisation
|
||||
from tests.app.db import (
|
||||
create_annual_billing,
|
||||
create_domain,
|
||||
create_email_branding,
|
||||
create_ft_billing,
|
||||
create_letter_branding,
|
||||
create_organisation,
|
||||
create_service,
|
||||
create_user,
|
||||
create_template,
|
||||
create_ft_billing,
|
||||
create_annual_billing
|
||||
create_user,
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user