Skip to content

Commit a445c5c

Browse files
committed
remove duplication
1 parent 28caadf commit a445c5c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

mkl_fft/_numpy_fft.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,11 +1249,9 @@ def rfftn(a, s=None, axes=None, norm=None):
12491249
fsc = 1.0
12501250
elif norm == "forward":
12511251
x = asanyarray(x)
1252-
s, axes = _cook_nd_args(x, s, axes)
12531252
fsc = frwd_sc_nd(s, x.shape)
12541253
else:
12551254
x = asanyarray(x)
1256-
s, axes = _cook_nd_args(x, s, axes)
12571255
fsc = sqrt(frwd_sc_nd(s, x.shape))
12581256

12591257
return trycall(

0 commit comments

Comments
 (0)