Merge "polling: remove useless base class"

This commit is contained in:
Zuul 2018-06-29 14:16:49 +00:00 committed by Gerrit Code Review
commit c97f5958ba
1 changed files with 1 additions and 5 deletions

View File

@ -21,10 +21,6 @@ import six
from stevedore import extension
class PluginBase(object):
"""Base class for all plugins."""
class ExtensionLoadError(Exception):
"""Error of loading pollster plugin.
@ -50,7 +46,7 @@ class PollsterPermanentError(Exception):
@six.add_metaclass(abc.ABCMeta)
class PollsterBase(PluginBase):
class PollsterBase(object):
"""Base class for plugins that support the polling API."""
def setup_environment(self):