fix(widgets): fix init parameters after new bec version
CI for debye_bec / test (push) Successful in 57s
CI for debye_bec / test (pull_request) Successful in 1m7s

This commit is contained in:
x01da
2026-07-30 11:26:03 +02:00
parent b39ff70ece
commit 9670648bd8
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()
@@ -75,7 +75,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()