Skip to content

Commit 4d0a53b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7e7af22 commit 4d0a53b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

maths/radix2_fft.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,9 @@ def __multiply(self):
147147
inverce_c = new_inverse_c
148148
next_ncol *= 2
149149
# Unpack
150-
inverce_c = [complex(round(x[0].real, 8), round(x[0].imag, 8)) for x in inverce_c]
150+
inverce_c = [
151+
complex(round(x[0].real, 8), round(x[0].imag, 8)) for x in inverce_c
152+
]
151153

152154
# Remove leading 0's
153155
while inverce_c[-1] == 0:

0 commit comments

Comments
 (0)