Skip to content

Commit 038764b

Browse files
committed
satisfy linter
1 parent d6da5fb commit 038764b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

mkl_fft/_fft_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,9 @@ def _c2c_fftnd_impl(
397397
_direct = True
398398
# See if s matches the shape of x along the given axes.
399399
# If it does, we can use _iter_complementary rather than _iter_fftnd.
400-
if _check_shapes_for_direct(xs, x.shape, xa, check_complimentary=True):
400+
if _check_shapes_for_direct(
401+
xs, x.shape, xa, check_complimentary=True
402+
):
401403
_complementary = True
402404
_direct = _direct and x.dtype in valid_dtypes
403405
else:

0 commit comments

Comments
 (0)