Source code for simplebench.reporters.reporter.options

"""Base class for reporter-specific options."""
from __future__ import annotations


[docs] class ReporterOptions: """Marker base class for reporter related options. This class serves as a base for all reporter-specific options classes used within the simplebench framework. It provides a common base type for all reporter options. These options classes can be used to encapsulate configuration settings specific to different reporter implementations and are typically used in Choice() and Case() objects to customize reporter behavior. """