diff --git a/src/View/CheckList/Window.py b/src/View/CheckList/Window.py index 85244d48..88b0294d 100644 --- a/src/View/CheckList/Window.py +++ b/src/View/CheckList/Window.py @@ -110,7 +110,7 @@ class CheckListWindow(ASubMainWindow, ListedSubWindow): def _compute_status_label(self): ok, warning, error = self._compute_status() return (f"Ok: {ok} |" + - f"Warning: {warning} |" + + f"Warning: {warning} |" + f"Error: {error}") def setup_statusbar(self): diff --git a/src/View/CheckList/Worker.py b/src/View/CheckList/Worker.py index dfde0931..9137d26b 100644 --- a/src/View/CheckList/Worker.py +++ b/src/View/CheckList/Worker.py @@ -24,7 +24,7 @@ class Worker(QObject): for checker in self._checker_list: self.signalStatus.emit(checker.name) - time.sleep(1) + # time.sleep(1) checker.run(self._study) self.signalStatus.emit("progress")