Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Oct 9, 2024
1 parent fff5c72 commit dcecc32
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apis/python/src/tiledbsoma/io/shaping.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def _treewalk(
for coll_name in ["X", "obsm", "obsp", "varm", "varp"]:
if coll_name in item:

args[coll_name] = coll_name
args["coll_name"] = coll_name

ok = _treewalk(
item[coll_name].uri,
Expand All @@ -227,7 +227,7 @@ def _treewalk(
for key in item:

if node_name == "ms":
args[ms_name] = key
args["ms_name"] = key

ok = _treewalk(item[key].uri, node_name=key, visitor=visitor, args=args)
retval = retval and ok
Expand Down Expand Up @@ -525,4 +525,3 @@ def _get_new_ndarray_shape(
raise tiledbsoma.SOMAError(

Check warning on line 525 in apis/python/src/tiledbsoma/io/shaping.py

View check run for this annotation

Codecov / codecov/patch

apis/python/src/tiledbsoma/io/shaping.py#L524-L525

Added lines #L524 - L525 were not covered by tests
f"experiment resize: internal error: unhandled collection {coll_name}"
)

0 comments on commit dcecc32

Please sign in to comment.