mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-27 04:58:42 +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
|
from auditlog.registry import auditlog # type: ignore
|
||||||
import traceback
|
|
||||||
from .contact import Contact
|
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 import Domain
|
||||||
|
from .domain_application import DomainApplication
|
||||||
|
from .domain_information import DomainInformation
|
||||||
from .draft_domain import DraftDomain
|
from .draft_domain import DraftDomain
|
||||||
from .host_ip import HostIP
|
from .host_ip import HostIP
|
||||||
from .host import Host
|
from .host import Host
|
||||||
|
@ -23,9 +17,9 @@ from .transition_domain import TransitionDomain
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Contact",
|
"Contact",
|
||||||
|
"Domain",
|
||||||
"DomainApplication",
|
"DomainApplication",
|
||||||
"DomainInformation",
|
"DomainInformation",
|
||||||
"Domain",
|
|
||||||
"DraftDomain",
|
"DraftDomain",
|
||||||
"DomainInvitation",
|
"DomainInvitation",
|
||||||
"HostIP",
|
"HostIP",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue