Skip to content

Commit

Permalink
Fixed argument type annotations for regridding.find_indices().
Browse files Browse the repository at this point in the history
  • Loading branch information
byrdie committed Dec 4, 2023
1 parent 5e887f2 commit 62e60ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion regridding/_find_indices/_find_indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def find_indices(
axis_input: None | int | tuple[int, ...] = None,
axis_output: None | int | tuple[int, ...] = None,
fill_value: None | int = None,
method: Literal["brute"] | Literal["searchsorted"] = "brute",
method: Literal["brute", "searchsorted"] = "brute",
) -> tuple[np.ndarray, ...]:
"""
Find the index of the input cell which contains the output vertex.
Expand Down

0 comments on commit 62e60ab

Please sign in to comment.