summaryrefslogtreecommitdiff
path: root/oslo_config/types.py
diff options
context:
space:
mode:
authorMoisés Guimarães de Medeiros <moguimar@redhat.com>2020-12-01 12:36:32 +0100
committerMoisés Guimarães de Medeiros <moguimar@redhat.com>2021-01-12 17:09:25 +0000
commit05b6a3333603595ef99131286b8ccbf1e48136f7 (patch)
tree45cb277357a834ef494b7606ed89e49d2494cc23 /oslo_config/types.py
parentcefa4d47507acfd7a90f6a56b73b4795ba881a52 (diff)
downloadoslo-config-05b6a3333603595ef99131286b8ccbf1e48136f7.tar.gz
inherit from object is not required for py3
Change-Id: I3f3b1dca78e2e9b2515231ccc6600b64f31039fb Signed-off-by: Moisés Guimarães de Medeiros <moguimar@redhat.com>
Diffstat (limited to 'oslo_config/types.py')
-rw-r--r--oslo_config/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_config/types.py b/oslo_config/types.py
index a1f75c9..72242cb 100644
--- a/oslo_config/types.py
+++ b/oslo_config/types.py
@@ -30,7 +30,7 @@ import netaddr
import rfc3986
-class ConfigType(object, metaclass=abc.ABCMeta):
+class ConfigType(metaclass=abc.ABCMeta):
def __init__(self, type_name='unknown type'):
self.type_name = type_name