mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 12:08:40 +02:00
Change import order
This commit is contained in:
parent
f1589c8480
commit
d50de8516e
1 changed files with 3 additions and 9 deletions
|
@ -1,14 +1,8 @@
|
|||
from auditlog.registry import auditlog # type: ignore
|
||||
import traceback
|
||||
from .contact import Contact
|
||||
try:
|
||||
from .domain_application import DomainApplication
|
||||
except ImportError as err:
|
||||
print("Error traceback is...")
|
||||
print(traceback.format_exc())
|
||||
pass
|
||||
from .domain_information import DomainInformation
|
||||
from .domain import Domain
|
||||
from .domain_application import DomainApplication
|
||||
from .domain_information import DomainInformation
|
||||
from .draft_domain import DraftDomain
|
||||
from .host_ip import HostIP
|
||||
from .host import Host
|
||||
|
@ -23,9 +17,9 @@ from .transition_domain import TransitionDomain
|
|||
|
||||
__all__ = [
|
||||
"Contact",
|
||||
"Domain",
|
||||
"DomainApplication",
|
||||
"DomainInformation",
|
||||
"Domain",
|
||||
"DraftDomain",
|
||||
"DomainInvitation",
|
||||
"HostIP",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue