Skip to content

Commit

Permalink
WIP pass all exception types
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenv committed Feb 21, 2024
1 parent 8804db9 commit c7fb0d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apis/python/src/tiledbsoma/_tdb_handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def open(
return ArrayWrapper.open(uri, mode, context, timestamp)
if soma_object.type in ("SOMACollection", "SOMAExperiment", "SOMAMeasurement"):
return GroupWrapper.open(uri, mode, context, timestamp)
except SOMAError:
except:
# TODO on Linux this throws a SOMAError but on macOS a RuntimeError
pass

# We avoid needing to create a tiledb.Ctx() unless necessary
Expand Down

0 comments on commit c7fb0d6

Please sign in to comment.