2018-12-22 22:19:38 +01:00

11 lines
301 B
Python

# TODO: use an abstract base class (ie. import from abc ...) once we have python >=3.3 that supports @staticmethod with @abstractmethod
class Analyzer:
""" Abstract base class for all "analyzers".
"""
@staticmethod
def analyze(filename, metadata):
raise NotImplementedError