mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
Older python-six from early RHEL and ubuntu do not have add_metaclass but do have with_metaclass
This commit is contained in:
parent
f3ccff42e5
commit
7dd3ef7b60
3 changed files with 6 additions and 9 deletions
5
lib/ansible/plugins/cache/base.py
vendored
5
lib/ansible/plugins/cache/base.py
vendored
|
@ -20,11 +20,10 @@ __metaclass__ = type
|
|||
|
||||
from abc import ABCMeta, abstractmethod
|
||||
|
||||
from six import add_metaclass
|
||||
from six import with_metaclass
|
||||
|
||||
|
||||
@add_metaclass(ABCMeta)
|
||||
class BaseCacheModule:
|
||||
class BaseCacheModule(with_metaclass(ABCMeta, object)):
|
||||
|
||||
@abstractmethod
|
||||
def get(self, key):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue