Skip to content

Commit

Permalink
Changed the parameter order of the clip function to `clip(a, out, a…
Browse files Browse the repository at this point in the history
…_min, a_max)`.
  • Loading branch information
haesleinhuepf committed Oct 16, 2024
1 parent a2dd16c commit 8a93f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyclesperanto/_interroperability.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def set_wait_for_kernel_finish(bool=True):
wait_for_kernel_to_finish(bool)


def clip(a, a_min, a_max, out=None):
def clip(a, out, a_min, a_max):
from ._tier2 import clip

a = asarray(a)
Expand Down

0 comments on commit 8a93f78

Please sign in to comment.