Skip to content

Commit

Permalink
STY: fix minor whitespace issue that the linter chokes on
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Dec 4, 2024
1 parent 5c1fb33 commit 3f8fc43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/wp_scalogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
interpolation='bilinear')
ax2.set_title("Spectrogram of signal")
ax3 = fig2.add_subplot(212)
ax3.imshow(values, origin='lower', extent=[0, 1, 0, len(values)],
ax3.imshow(values, origin='lower', extent=[0, 1, 0, len(values)],
interpolation='nearest', aspect='auto')
ax3.set_yticks(np.arange(0.5, len(labels) + 0.5), labels)
ax3.set_title("Wavelet packet coefficients")
Expand Down

0 comments on commit 3f8fc43

Please sign in to comment.