summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
Diffstat (limited to 'hacking')
-rw-r--r--hacking/build_library/build_ansible/commands.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/hacking/build_library/build_ansible/commands.py b/hacking/build_library/build_ansible/commands.py
index e689e25a37..826799349e 100644
--- a/hacking/build_library/build_ansible/commands.py
+++ b/hacking/build_library/build_ansible/commands.py
@@ -10,17 +10,17 @@ __metaclass__ = type
from abc import ABCMeta, abstractmethod, abstractproperty
-class Command:
+class Command(metaclass=ABCMeta):
"""
Subcommands of :program:`build-ansible.py`.
- This defines an interface that all subcommands must conform to. :program:`build-ansible.py` will
- require that these things are present in order to proceed.
+ This defines an interface that all subcommands must conform to. :program:`build-ansible.py`
+ will require that these things are present in order to proceed.
"""
@staticmethod
@abstractproperty
def name():
- """Name of the command. The same as the string is invoked with"""
+ """Name of the subcommand. It's the string to invoked it via on the command line"""
@staticmethod
@abstractmethod