Source code for benchmarkstt.output

"""
Subpackage responsible for dealing with output formats
"""

from benchmarkstt.factory import Factory


[docs]class Base: def __enter__(self): return self def __exit__(self, exc_type, exc_val, exc_tb): pass
[docs] def result(self, title, result): raise NotImplementedError()
factory = Factory(Base)