refactor(analyzer): rename analyzer files

This commit is contained in:
jo 2022-01-17 20:35:21 +01:00 committed by Kyle Robbertze
parent 2a8da1e931
commit f6a52c8324
16 changed files with 0 additions and 9 deletions

View file

@ -0,0 +1,9 @@
# 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