Skip to content

Commit 8d0ec0a

Browse files
committed
Identation removed
1 parent c5100ff commit 8d0ec0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

applications/emgenvelope.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ def __init__(self):
2121
self.emg_plot.setBackground('w')
2222
self.emg_plot.showGrid(x=True, y=True)
2323
self.emg_plot.setMouseEnabled(x=False, y=False) # Disable zoom
24-
self.emg_plot.setTitle("Filtered EMG Signal(High Pass 70 Hz)")
24+
self.emg_plot.setTitle("Filtered EMG Signal (High Pass:70 Hz)")
2525

2626
self.envelope_plot = PlotWidget(self)
2727
self.envelope_plot.setBackground('w')
2828
self.envelope_plot.showGrid(x=True, y=True)
2929
self.envelope_plot.setMouseEnabled(x=False, y=False) # Disable zoom
30-
self.envelope_plot.setTitle("EMG Envelope(10% Average Samples)")
30+
self.envelope_plot.setTitle("EMG Envelope (Samples Average:10%)")
3131

3232
# Add plots to layout
3333
layout.addWidget(self.emg_plot)

0 commit comments

Comments
 (0)