0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

WIP fix inheritance to test_color_utils.py

This commit is contained in:
2025-04-06 13:47:46 +02:00
parent 73f190b550
commit 426bd07788

View File

@ -133,8 +133,8 @@ class ExamplePlotWidget(BECWidget, QWidget):
) -> None:
if config is None:
config = ConnectionConfig(widget_class=self.__class__.__name__)
super().__init__(client=client, gui_id=gui_id, config=config)
QWidget.__init__(self, parent=parent)
BECWidget.__init__(self, client=client, gui_id=gui_id, config=config)
self.layout = QVBoxLayout(self)
self.glw = pg.GraphicsLayoutWidget()