Skip to content

Commit

Permalink
Remove type subscription
Browse files Browse the repository at this point in the history
  • Loading branch information
ebezzi committed Nov 28, 2023
1 parent dbdeb57 commit 2c89128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python-spec/src/somacore/query/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def _axisp_inner_ndarray(
self,
axis: "_Axis",
layer: str,
) -> np.ndarray[np.float32]:
) -> np.ndarray:
key = axis.value + "p"

if key not in self._ms:
Expand All @@ -543,7 +543,7 @@ def _axism_inner_ndarray(
self,
axis: "_Axis",
layer: str,
) -> np.ndarray[np.float32]:
) -> np.ndarray:
key = axis.value + "m"

if key not in self._ms:
Expand Down

0 comments on commit 2c89128

Please sign in to comment.