mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-26 04:28:39 +02:00
Another import test
This commit is contained in:
parent
8db3f66c42
commit
0896401169
2 changed files with 12 additions and 12 deletions
|
@ -44,6 +44,7 @@ except NameError:
|
||||||
|
|
||||||
# Attn: these imports should NOT be at the top of the file
|
# Attn: these imports should NOT be at the top of the file
|
||||||
try:
|
try:
|
||||||
|
from .utility.pool import EPPConnectionPool
|
||||||
from .client import CLIENT, commands
|
from .client import CLIENT, commands
|
||||||
from .errors import RegistryError, ErrorCode
|
from .errors import RegistryError, ErrorCode
|
||||||
from epplib.models import common, info
|
from epplib.models import common, info
|
||||||
|
|
|
@ -8,18 +8,17 @@ from django_fsm import FSMField, transition, TransitionNotAllowed # type: ignor
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from typing import Any
|
from typing import Any
|
||||||
try:
|
|
||||||
from epplibwrapper import (
|
from epplibwrapper import (
|
||||||
CLIENT as registry,
|
|
||||||
commands,
|
CLIENT as registry,
|
||||||
common as epp,
|
commands,
|
||||||
extensions,
|
common as epp,
|
||||||
info as eppInfo,
|
extensions,
|
||||||
RegistryError,
|
info as eppInfo,
|
||||||
ErrorCode,
|
RegistryError,
|
||||||
)
|
ErrorCode,
|
||||||
except ImportError:
|
)
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
from registrar.utility.errors import (
|
from registrar.utility.errors import (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue