diff --git a/examples_linux/scanner.py b/examples_linux/scanner.py index 1d01cd7b..cd621f90 100644 --- a/examples_linux/scanner.py +++ b/examples_linux/scanner.py @@ -71,7 +71,7 @@ def __init__( # pylint: disable=too-many-arguments,invalid-name self.x, self.y, self.width, self.win, self.color = (x, y, cols, std_scr, color) self.win.move(self.y, self.x) self.win.attron(curses.color_pair(self.color)) - self.win.addstr(label + " ") # always labeled in MHz (4 digits) + self.win.addstr(label) # always labeled in MHz (4 digits) for _ in range(self.width - 8): # draw the empty bar self.win.addch(curses.ACS_HLINE) self.win.addstr(" - ") # draw the initial signal count