mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 21:30:22 -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
|
@ -22,7 +22,7 @@ __metaclass__ = type
|
|||
|
||||
from abc import ABCMeta, abstractmethod, abstractproperty
|
||||
|
||||
from six import add_metaclass
|
||||
from six import with_metaclass
|
||||
|
||||
from ansible import constants as C
|
||||
from ansible.errors import AnsibleError
|
||||
|
@ -34,8 +34,7 @@ from ansible.utils.display import Display
|
|||
|
||||
__all__ = ['ConnectionBase']
|
||||
|
||||
@add_metaclass(ABCMeta)
|
||||
class ConnectionBase:
|
||||
class ConnectionBase(with_metaclass(ABCMeta, object)):
|
||||
'''
|
||||
A base class for connections to contain common code.
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue