summaryrefslogtreecommitdiffstats
path: root/hpa/hpa/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'hpa/hpa/base.py')
-rw-r--r--hpa/hpa/base.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/hpa/hpa/base.py b/hpa/hpa/base.py
index 90eb6432..ce99c970 100644
--- a/hpa/hpa/base.py
+++ b/hpa/hpa/base.py
@@ -1,15 +1,18 @@
+"""
+base case for hpa discovery
+"""
import abc
import six
@six.add_metaclass(abc.ABCMeta)
-class HPA_DiscoveryBase(object):
+class HPADiscoveryBase:
"""Base class for example plugin used in the tutorial.
"""
def __init__(self):
- """do nothing"""
+ """do nothing"""
@abc.abstractmethod
def get_hpa_capabilities(self, data):