Skip to content

Commit 59c02c5

Browse files
authored
Merge branch 'main' into addons_to_hnsw
2 parents 7328103 + 80a2462 commit 59c02c5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

benchs/bench_fw/benchmark_io.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ def merge_rcq_itq(
4646
@dataclass
4747
class BenchmarkIO:
4848
path: str
49-
cached_ds: Dict[Any, Any] = {}
49+
50+
def __init__(self, path: str):
51+
self.path = path
52+
self.cached_ds: Dict[Any, Any] = {}
5053

5154
def clone(self):
5255
return BenchmarkIO(path=self.path)

0 commit comments

Comments
 (0)