summaryrefslogtreecommitdiff
path: root/barbicanclient/v1/orders.py
diff options
context:
space:
mode:
Diffstat (limited to 'barbicanclient/v1/orders.py')
-rw-r--r--barbicanclient/v1/orders.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/barbicanclient/v1/orders.py b/barbicanclient/v1/orders.py
index aee762a..6b352c9 100644
--- a/barbicanclient/v1/orders.py
+++ b/barbicanclient/v1/orders.py
@@ -17,7 +17,6 @@ import functools
import logging
from oslo_utils.timeutils import parse_isotime
-import six
from barbicanclient import base
from barbicanclient import formatter
@@ -113,8 +112,7 @@ class CertificateOrderFormatter(formatter.EntityFormatter):
return data
-@six.add_metaclass(abc.ABCMeta)
-class Order(object):
+class Order(object, metaclass=abc.ABCMeta):
"""Base order object to hold common functionality
This should be considered an abstract class that should not be