Skip to content

Commit

Permalink
I renamed the parameter bool to wait_for_kernel_finish in the `se…
Browse files Browse the repository at this point in the history
…t_wait_for_kernel_finish` function.
  • Loading branch information
haesleinhuepf committed Oct 16, 2024
1 parent f7fef13 commit 478413a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyclesperanto/_interroperability.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ def affine_transform(
)


def set_wait_for_kernel_finish(wait: bool =True):
def set_wait_for_kernel_finish(wait_for_kernel_finish: bool =True):
warnings.warn(
"set_wait_for_kernel_finish : This method is deprecated. Consider using wait_for_kernel_to_finish() instead.",
DeprecationWarning,
)
wait_for_kernel_to_finish(wait)
wait_for_kernel_to_finish(wait_for_kernel_finish)


def clip(a, a_min, a_max, out=None):
Expand Down

0 comments on commit 478413a

Please sign in to comment.