Skip to content

Commit e84ace6

Browse files
committed
Fixing level dimensions tuple
1 parent 6258617 commit e84ace6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tiledb/bioimg/openslide.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def dimensions(self) -> Tuple[int, ...]:
202202
except TileDBError:
203203
depth = None
204204
d1, d2 = width // self._pixel_depth, height
205-
dimensions = (d1, d2) if depth is None else d1, d2, depth
205+
dimensions = (d1, d2) if depth is None else (d1, d2, depth)
206206
return dimensions
207207

208208
@property

0 commit comments

Comments
 (0)