Skip to content

Commit d9fe0aa

Browse files
committed
Comment out non-existing storage property
1 parent 1ccdfce commit d9fe0aa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/blosc2/ndarray.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,10 +1175,11 @@ def dparams(self) -> blosc2.DParams:
11751175
"""The decompression parameters used by the array."""
11761176
return self.schunk.dparams
11771177

1178-
@property
1179-
def storage(self) -> blosc2.Storage:
1180-
"""The storage of the array."""
1181-
return self.schunk.storage
1178+
# TODO: Uncomment when blosc2.Storage is available
1179+
# @property
1180+
# def storage(self) -> blosc2.Storage:
1181+
# """The storage of the array."""
1182+
# return self.schunk.storage
11821183

11831184
@property
11841185
def urlpath(self) -> str:

0 commit comments

Comments
 (0)