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 # 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

View file

@ -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 (