lib/metric-config-parser/metric_config_parser/pre_treatment.py (10 lines of code) (raw):
from typing import TYPE_CHECKING, Any, Dict
import attr
if TYPE_CHECKING:
from .definition import DefinitionSpecSub
@attr.s(auto_attribs=True)
class PreTreatmentReference:
name: str
args: Dict[str, Any]
def resolve(self, spec: "DefinitionSpecSub") -> "PreTreatmentReference":
return self