plugin: don't use @staticmethod with abc

Otherwise that breaks the check

Change-Id: I30d652892d54bb05d45e90eaa97bafc66a584de0
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2013-02-21 11:29:18 +01:00
parent 8bca547c0e
commit fba34c9ea4

View File

@ -81,9 +81,8 @@ class PollsterBase(PluginBase):
__metaclass__ = abc.ABCMeta __metaclass__ = abc.ABCMeta
@staticmethod
@abc.abstractmethod @abc.abstractmethod
def get_counter_names(): def get_counter_names(self):
"""Return a sequence of Counter names supported by the pollster.""" """Return a sequence of Counter names supported by the pollster."""
@abc.abstractmethod @abc.abstractmethod