Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Jun 11, 2019
1 parent cc8c9e9 commit 249b712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wfdb/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,8 @@ def get_wfdb_plot_items(record, annotation, plot_sym):
raise ValueError('The record has no signal to plot')

fs = record.fs
sig_name = record.sig_name
sig_units = record.units
sig_name = [str(s) for s in record.sig_name]
sig_units = [str(s) for s in record.units]
record_name = 'Record: %s' % record.record_name
ylabel = ['/'.join(pair) for pair in zip(sig_name, sig_units)]
else:
Expand Down

0 comments on commit 249b712

Please sign in to comment.