From 9170785ed52fe43cd7849f0560934b5e54858778 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Fri, 15 Sep 2023 15:21:38 +0200 Subject: [PATCH] fix(module-shell): fix syntax error --- bumblebee_status/modules/contrib/shell.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bumblebee_status/modules/contrib/shell.py b/bumblebee_status/modules/contrib/shell.py index 7043778..e8461b9 100644 --- a/bumblebee_status/modules/contrib/shell.py +++ b/bumblebee_status/modules/contrib/shell.py @@ -72,7 +72,6 @@ class Module(core.module.Module): self.__current_thread = threading.Thread( target=lambda obj, cmd: obj.set_output( util.cli.execute(cmd, ignore_errors=True) - core.event.trigger("update", [self.id], redraw_only=True) ), args=(self, self.__command), )