Move python_apps/airtime_analyzer/ to analyzer/
This commit is contained in:
parent
a7d06ad076
commit
2ef63e8c4e
39 changed files with 0 additions and 0 deletions
9
analyzer/airtime_analyzer/analyzer.py
Normal file
9
analyzer/airtime_analyzer/analyzer.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue