0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-13 19:21:50 +02:00

test(device_signal_input): fix init of device input widget

This commit is contained in:
2025-04-09 19:28:00 +02:00
committed by wyzula-jan
parent 23bdd95d8c
commit 31c3b64d7b

View File

@ -21,9 +21,6 @@ from .conftest import create_widget
class DeviceInputWidget(DeviceSignalInputBase, QWidget):
"""Thin wrapper around DeviceInputBase to make it a QWidget"""
def __init__(self, parent=None, client=None, config=None, gui_id=None):
super().__init__(parent=parent, client=client, gui_id=gui_id, config=config, **kwargs)
@pytest.fixture
def device_signal_base(qtbot, mocked_client):