Skip to content

Commit d8f0423

Browse files
committed
fix black formating
1 parent aa592db commit d8f0423

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

sdp/challenger_sdp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def sliding_dot_product(Q, T):
1111
out = np.empty(l)
1212
for i in range(l):
1313
out[i] = np.dot(Q, T[i : i + m])
14-
return out
14+
return out

sdp/pyfftw_sdp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def __call__(self, Q, T):
5858

5959
# RFFT(T) * RFFT(Q)
6060
np.multiply(self.complex_arr, complex_arr_T, out=self.complex_arr)
61-
62-
# IRFFT
61+
62+
# IRFFT
6363
# input is in self.complex_arr
6464
# output is in self.real_arr
6565
self.irfft_obj.execute()

0 commit comments

Comments
 (0)