Another import test

This commit is contained in:
zandercymatics 2023-10-16 13:51:13 -06:00
parent 8db3f66c42
commit 0896401169
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 12 additions and 12 deletions

View file

@ -44,6 +44,7 @@ except NameError:
# Attn: these imports should NOT be at the top of the file
try:
from .utility.pool import EPPConnectionPool
from .client import CLIENT, commands
from .errors import RegistryError, ErrorCode
from epplib.models import common, info

View file

@ -8,8 +8,9 @@ from django_fsm import FSMField, transition, TransitionNotAllowed # type: ignor
from django.db import models
from typing import Any
try:
from epplibwrapper import (
from epplibwrapper import (
CLIENT as registry,
commands,
common as epp,
@ -17,9 +18,7 @@ try:
info as eppInfo,
RegistryError,
ErrorCode,
)
except ImportError:
pass
)
from registrar.utility.errors import (