jfloyd1697
Results
1
comments of
jfloyd1697
This works ``` @dataclass_json(undefined=Undefined.RAISE) @dataclass(eq=True, kw_only=True, order=True, frozen=True) class TestInput3: cols: tuple[(tuple[str, str] | str), ...] = () _: InitVar[bool] = False def __post_init__(self, _: bool = False): if not...