Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rossi authored Jul 11, 2024
1 parent 899dd26 commit 5a1b4cb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pint_pandas/pint_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ def __array_ufunc__(self, ufunc, method, *inputs, **kwargs):
inputs = convert_np_inputs(inputs)
if out:
kwargs["out"] = convert_np_inputs(out)
print(inputs)
result = getattr(ufunc, method)(*inputs, **kwargs)
return self._convert_np_result(result)

Expand Down

0 comments on commit 5a1b4cb

Please sign in to comment.