LineParam Line parameters. Source code in ffit/funcs/line.py 10 11 12 13 14 15 16 17 18 19 20 21@dataclass(frozen=True) class LineParam(ParamDataclass): """Line parameters. Attributes: offset (float) amplitude (float) """ offset: float amplitude: float std: "_t.Optional[LineParam]" = None