Skip to content

Commit 0ee54ef

Browse files
committed
run black
1 parent 77b4ac7 commit 0ee54ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wfdb/processing/qrs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1821,7 +1821,7 @@ def ricker(points, a):
18211821
wsq = a**2
18221822
vec = np.arange(0, points) - (points - 1.0) / 2
18231823
xsq = vec**2
1824-
mod = (1 - xsq / wsq)
1824+
mod = 1 - xsq / wsq
18251825
gauss = np.exp(-xsq / (2 * wsq))
18261826
total = A * mod * gauss
18271827
return total

0 commit comments

Comments
 (0)