|
|
@ -13,6 +13,7 @@ from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.common.text.converters import to_text
|
|
|
|
from ansible.module_utils.common.text.converters import to_text
|
|
|
|
|
|
|
|
from ansible.module_utils.six import with_metaclass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class _EventSource:
|
|
|
|
class _EventSource:
|
|
|
@ -102,5 +103,5 @@ class _AnsibleCollectionConfig(type):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# concrete class of our metaclass type that defines the class properties we want
|
|
|
|
# concrete class of our metaclass type that defines the class properties we want
|
|
|
|
class AnsibleCollectionConfig(metaclass=_AnsibleCollectionConfig):
|
|
|
|
class AnsibleCollectionConfig(with_metaclass(_AnsibleCollectionConfig)):
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|