Remove unused code

This commit is contained in:
zandercymatics 2023-10-18 16:03:03 -06:00
parent 9a12e29c5a
commit ceb2e5ec66
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 1 additions and 5 deletions

View file

@ -1,10 +1,9 @@
"""Provide a wrapper around epplib to handle authentication and errors."""
import logging
from time import sleep
from gevent import Timeout
from epplibwrapper.utility.pool_status import PoolStatus
try:

View file

@ -83,9 +83,6 @@ class RegistryError(Exception):
def is_client_error(self):
return self.code is not None and (self.code >= 2000 and self.code <= 2308)
def is_not_retryable(self):
pass
class LoginError(RegistryError):
pass