From 271fe449baf391dbab85d3a889be075693cd36b1 Mon Sep 17 00:00:00 2001 From: atse Date: Mon, 8 Jul 2024 13:22:53 +0800 Subject: [PATCH] Remove duplicated show call MainWindow.show() already called in coro_main --- pytec/tec_qt.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pytec/tec_qt.py b/pytec/tec_qt.py index 8402c56..e2d5312 100644 --- a/pytec/tec_qt.py +++ b/pytec/tec_qt.py @@ -60,8 +60,6 @@ class MainWindow(QtWidgets.QMainWindow): ui_file_path = importlib.resources.files("pytec.gui.view").joinpath("tec_qt.ui") uic.loadUi(ui_file_path, self) - self.show() - self.hw_rev_data = None self.info_box = InfoBox()