Skip to content

Commit 812ca32

Browse files
committed
fix variable typo
1 parent 41df936 commit 812ca32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

wfdb/plot/plots.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def plotrec(record=None, title = None, annotation = None, annch = [0], timeunits
5252

5353
# Expand list styles
5454
if type(sigstyle) == str:
55-
sigtyle = [sigstyle]*record.nsig
55+
sigstyle = [sigstyle]*record.nsig
56+
print('was string now:', sigstyle)
5657
else:
5758
if len(sigstyle) < record.nsig:
5859
sigstyle = sigstyle+['']*(record.nsig-len(sigstyle))

0 commit comments

Comments
 (0)