summaryrefslogtreecommitdiff
path: root/oslo_middleware/healthcheck/pluginbase.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_middleware/healthcheck/pluginbase.py')
-rw-r--r--oslo_middleware/healthcheck/pluginbase.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/oslo_middleware/healthcheck/pluginbase.py b/oslo_middleware/healthcheck/pluginbase.py
index 5bb8494..ddfd940 100644
--- a/oslo_middleware/healthcheck/pluginbase.py
+++ b/oslo_middleware/healthcheck/pluginbase.py
@@ -15,8 +15,6 @@
import abc
-import six
-
class HealthcheckResult(object):
"""Result of a ``healthcheck`` method call should be this object."""
@@ -27,8 +25,7 @@ class HealthcheckResult(object):
self.details = details
-@six.add_metaclass(abc.ABCMeta)
-class HealthcheckBaseExtension(object):
+class HealthcheckBaseExtension(metaclass=abc.ABCMeta):
def __init__(self, oslo_conf, conf):
self.oslo_conf = oslo_conf