mirror of
https://github.com/certbot/certbot.git
synced 2026-07-31 18:34:41 +02:00
correct metaclass usage everywhere (#5919)
This commit is contained in:
committed by
Joona Hoikkala
parent
95c0c4a708
commit
32e85e9a23
@@ -7,11 +7,10 @@ import zope.interface
|
||||
# pylint: disable=too-few-public-methods
|
||||
|
||||
|
||||
@six.add_metaclass(abc.ABCMeta)
|
||||
class AccountStorage(object):
|
||||
"""Accounts storage interface."""
|
||||
|
||||
__metaclass__ = abc.ABCMeta
|
||||
|
||||
@abc.abstractmethod
|
||||
def find_all(self): # pragma: no cover
|
||||
"""Find all accounts.
|
||||
|
||||
Reference in New Issue
Block a user