Skip to content

Commit

Permalink
add min and max to the array function overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
keewis committed Mar 7, 2023
1 parent 5314065 commit 1b2b059
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pint/facets/numpy/numpy_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,8 @@ def implementation(*args, **kwargs):
("broadcast_to", ["array"], True),
("amax", ["a", "initial"], True),
("amin", ["a", "initial"], True),
("max", ["a", "initial"], True),
("min", ["a", "initial"], True),
("searchsorted", ["a", "v"], False),
("isclose", ["a", "b"], False),
("nan_to_num", ["x", "nan", "posinf", "neginf"], True),
Expand Down

0 comments on commit 1b2b059

Please sign in to comment.