Skip to content

Commit

Permalink
Fixed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronzedwick committed Jan 7, 2025
1 parent 00973c7 commit f226da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uxarray/grid/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ def isel(
"Inverse indices are not yet supported for node selection, please use face centers"
)
return _slice_node_indices(
self, dim_kwargs["n_node"], inverse_indices=inverse_indices
self, dim_kwargs["n_node"]
)

elif "n_edge" in dim_kwargs:
Expand All @@ -2277,7 +2277,7 @@ def isel(
"Inverse indices are not yet supported for edge selection, please use face centers"
)
return _slice_edge_indices(
self, dim_kwargs["n_edge"], inverse_indices=inverse_indices
self, dim_kwargs["n_edge"]
)

elif "n_face" in dim_kwargs:
Expand Down

0 comments on commit f226da0

Please sign in to comment.