1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-05-02 04:52:32 +02:00

fix: changed exec_ to exec for all apps

This commit is contained in:
wyzula-jan
2023-12-06 16:02:28 +01:00
parent 5adde23a45
commit 080c258d15
14 changed files with 16 additions and 16 deletions
@@ -257,7 +257,7 @@ class EigerPlot(QWidget):
)
dialog.setLayout(layout)
dialog.exec_()
dialog.exec()
###############################
# just simulations from here
@@ -295,4 +295,4 @@ if __name__ == "__main__":
app = QApplication(sys.argv)
plot = EigerPlot()
plot.show()
sys.exit(app.exec_())
sys.exit(app.exec())