Skip to content

Commit a2948b3

Browse files
committed
Adds PEP8 guidelines
1 parent c735060 commit a2948b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wfdb/io/_signal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,8 +1232,8 @@ def _rd_dat_file(file_name, dir_name, pb_dir, fmt, start_byte, n_samp):
12321232
frames = int(usablebytes/12)
12331233
rawbytes = rawdatamap[:usablebytes]
12341234
sig_data = np.lib.stride_tricks.as_strided(rawbytes.view(np.int32),
1235-
strides=(12,3,),
1236-
shape=(frames,4))
1235+
strides=(12,3,),
1236+
shape=(frames,4))
12371237
else:
12381238
sig_data = np.fromfile(fp,
12391239
dtype=np.dtype(DATA_LOAD_TYPES[fmt]),

0 commit comments

Comments
 (0)