Skip to content

Commit 73f2ca0

Browse files
Fix fallback numpy logic in def modf
1 parent 2931a2b commit 73f2ca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/dpnp_iface_mathematical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2955,7 +2955,7 @@ def modf(x1, **kwargs):
29552955
"Running on CUDA is currently not supported"
29562956
)
29572957

2958-
if not kwargs:
2958+
if kwargs:
29592959
pass
29602960
else:
29612961
return dpnp_modf(x1_desc)

0 commit comments

Comments
 (0)