* Remove awful StoredFile::uploadFile() function * Massive airtime_analyzer commenting and cleanup * Cleaned up the upload code * Temporarily disabled the liquidsoap playability test.
13 lines
253 B
Python
13 lines
253 B
Python
|
|
class Analyzer:
|
|
""" Abstract base class fpr all "analyzers".
|
|
"""
|
|
@staticmethod
|
|
def analyze(filename, metadata):
|
|
raise NotImplementedError
|
|
|
|
'''
|
|
class AnalyzerError(Error):
|
|
def __init__(self):
|
|
super.__init__(self)
|
|
'''
|