From f9b34bba21bd69f40fa802ffeb1883d36a0c9471 Mon Sep 17 00:00:00 2001 From: Max Jones <14077947+maxrjones@users.noreply.github.com> Date: Thu, 25 Jun 2026 19:17:44 -0400 Subject: [PATCH] refactor(testing): call super().__init__ in LatencyStore --- src/zarr/testing/store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zarr/testing/store.py b/src/zarr/testing/store.py index 11ceeee83a..fb87a69a09 100644 --- a/src/zarr/testing/store.py +++ b/src/zarr/testing/store.py @@ -628,9 +628,9 @@ class LatencyStore(WrapperStore[Store]): set_latency: float def __init__(self, store: Store, *, get_latency: float = 0, set_latency: float = 0) -> None: + super().__init__(store) self.get_latency = float(get_latency) self.set_latency = float(set_latency) - self._store = store def _with_store(self, store: Store) -> Self: return type(self)(store, get_latency=self.get_latency, set_latency=self.set_latency)