remove zope to fix compatibility with Certbot 2.x

This commit is contained in:
Alex Zorin 2022-11-23 07:16:45 +11:00
parent b4b3f24e1e
commit c12f443c15

View file

@ -1,20 +1,15 @@
"""DNS Authenticator for IONOS.""" """DNS Authenticator for IONOS."""
import json import json
import logging import logging
import time
import requests import requests
import zope.interface
from certbot import errors from certbot import errors
from certbot import interfaces
from certbot.plugins import dns_common from certbot.plugins import dns_common
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
@zope.interface.implementer(interfaces.IAuthenticator)
@zope.interface.provider(interfaces.IPluginFactory)
class Authenticator(dns_common.DNSAuthenticator): class Authenticator(dns_common.DNSAuthenticator):
"""DNS Authenticator for IONOS """DNS Authenticator for IONOS