summaryrefslogtreecommitdiff
path: root/cliff/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'cliff/command.py')
-rw-r--r--cliff/command.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/cliff/command.py b/cliff/command.py
index 116ae5c..7dfe749 100644
--- a/cliff/command.py
+++ b/cliff/command.py
@@ -3,15 +3,16 @@ import abc
import argparse
import inspect
+import six
+
+@six.add_metaclass(abc.ABCMeta)
class Command(object):
"""Base class for command plugins.
:param app: Application instance invoking the command.
:paramtype app: cliff.app.App
"""
- __metaclass__ = abc.ABCMeta
-
def __init__(self, app, app_args):
self.app = app
self.app_args = app_args