Skip to content

Commit ad2cd64

Browse files
committed
Fix wrong aliases in __array_ufunc__
1 parent 3c9b296 commit ad2cd64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/pandas/numpy_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def maybe_dispatch_ufunc_to_dunder_op(
166166
"true_divide": "truediv",
167167
"power": "pow",
168168
"remainder": "mod",
169-
"divide": "div",
169+
"divide": "truediv",
170170
"equal": "eq",
171171
"not_equal": "ne",
172172
"less": "lt",

0 commit comments

Comments
 (0)