fix(widgets): fix init parameters after new bec version
CI for superxas_bec / test (push) Failing after 1m38s
CI for superxas_bec / test (pull_request) Failing after 1m39s

This commit is contained in:
x10da
2026-07-30 13:10:36 +02:00
parent b7562c0915
commit e4ca6a6880
2 changed files with 2 additions and 2 deletions
@@ -35,7 +35,7 @@ class DataViewer(BECWidget, QWidget):
ICON_NAME = "find_in_page"
def __init__(self, *arg, parent=None, **kwargs):
super().__init__(parent=parent, theme_update=True, *arg, **kwargs)
super().__init__(parent=parent, *arg, **kwargs)
self.get_bec_shortcuts()
central = QWidget()
@@ -76,7 +76,7 @@ class DigitalTwin(BECWidget, QWidget):
ICON_NAME = "lightbulb"
def __init__(self, *arg, parent=None, **kwargs):
super().__init__(parent=parent, theme_update=True, *arg, **kwargs)
super().__init__(parent=parent, *arg, **kwargs)
self.get_bec_shortcuts()
self.beamline = get_beamline_id()