mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-21 08:44:41 +02:00
Black changes - would not pass otherwise
This commit is contained in:
parent
9ed83a51da
commit
2db74e6b00
4 changed files with 38 additions and 9 deletions
|
@ -10,7 +10,16 @@ from typing import List, Dict
|
|||
from django.conf import settings
|
||||
from django.contrib.auth import get_user_model, login
|
||||
|
||||
from registrar.models import Contact, DraftDomain, Website, DomainApplication, DomainInvitation, User, DomainInformation, Domain # noqa
|
||||
from registrar.models import (
|
||||
Contact,
|
||||
DraftDomain,
|
||||
Website,
|
||||
DomainApplication,
|
||||
DomainInvitation,
|
||||
User,
|
||||
DomainInformation,
|
||||
Domain,
|
||||
)
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
@ -115,7 +124,7 @@ class AuditedAdminMockData:
|
|||
as a way to optionally include metadata in the string itself. Can be further expanded on.
|
||||
Came from a bug where different querysets used in testing would effectively be 'anonymized', wherein
|
||||
it would only display a list of types, but not include the variable name.
|
||||
""" # noqa
|
||||
""" # noqa
|
||||
|
||||
# Constants for different domain object types
|
||||
INFORMATION = "information"
|
||||
|
@ -207,7 +216,7 @@ class AuditedAdminMockData:
|
|||
|
||||
In more detail: domain_type specifies what kind of domain object you'd like to create, i.e.
|
||||
domain_application (APPLICATION), or domain_information (INFORMATION).
|
||||
""" # noqa
|
||||
""" # noqa
|
||||
common_args = self.get_common_domain_arg_dictionary(
|
||||
item_name, org_type, federal_type, purpose
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue