polling: remove useless base class

Change-Id: I7c5a248089b9f6dad8952f302ac99e6525054d82
This commit is contained in:
Julien Danjou 2018-06-27 13:11:22 +02:00
parent 4ae919c96e
commit 64e2699ea1
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):