diff --git a/benchs/bench_fw/benchmark_io.py b/benchs/bench_fw/benchmark_io.py index 379fa608b1..e6f337b89c 100644 --- a/benchs/bench_fw/benchmark_io.py +++ b/benchs/bench_fw/benchmark_io.py @@ -46,7 +46,10 @@ def merge_rcq_itq( @dataclass class BenchmarkIO: path: str - cached_ds: Dict[Any, Any] = {} + + def __init__(self, path: str): + self.path = path + self.cached_ds: Dict[Any, Any] = {} def clone(self): return BenchmarkIO(path=self.path)