sintonia/python_apps/airtime_analyzer/airtime_analyzer/analyzer.py
2021-06-05 00:39:23 +02:00

9 lines
295 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