Skip to content

Commit

Permalink
Fix #1
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Jan 15, 2025
1 parent 9a99846 commit 227e4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/bioimg/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def iter_levels_meta(
for o in group:
with open_bioimg(o.uri, config=config, ctx=ctx) as array:
try:
level = array.meta["level"]
level = int(array.meta["level"])
except KeyError as exc:
raise RuntimeError(
"Key: 'level' not found in array metadata. Make sure that levels have been "
Expand Down

0 comments on commit 227e4bb

Please sign in to comment.