Skip to content

Commit 372283a

Browse files
author
Hongyuhe
committed
update
1 parent 6f32d63 commit 372283a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_compat/paddle/_aliases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
def _two_arg(f):
7979
@_wraps(f)
8080
def _f(x1, x2, /, **kwargs):
81-
# x1, x2 = _fix_promotion(x1, x2)
81+
x1, x2 = _fix_promotion(x1, x2)
8282
return f(x1, x2, **kwargs)
8383

8484
if _f.__doc__ is None:

0 commit comments

Comments
 (0)