Skip to content

Commit 0269bf7

Browse files
committed
Fix style
1 parent 1a437e6 commit 0269bf7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

wfdb/io/convert/edf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,9 +411,7 @@ def read_edf(
411411
else:
412412
temp_sig_data = temp_all_sigs[i].flatten()
413413
if samps_per_frame[i] == 1:
414-
sig_data[:, i] = (
415-
temp_sig_data - baseline[i]
416-
) / adc_gain_all[i]
414+
sig_data[:, i] = (temp_sig_data - baseline[i]) / adc_gain_all[i]
417415
else:
418416
for j in range(sig_len):
419417
start_ind = j * samps_per_frame[i]

0 commit comments

Comments
 (0)