0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 11:41:49 +02:00

refactor: changed widget_IO.py to widget_io.py for consistency; widget_io.py example excluded from coverage

This commit is contained in:
wyzula-jan
2023-11-08 14:21:29 +01:00
parent 1f0103480d
commit 975aadbf07
2 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ class WidgetHierarchy:
# Example application to demonstrate the usage of the functions # Example application to demonstrate the usage of the functions
if __name__ == "__main__": if __name__ == "__main__": # pragma: no cover
app = QApplication([]) app = QApplication([])
# Create instance of WidgetHierarchy # Create instance of WidgetHierarchy

View File

@ -8,7 +8,7 @@ from PyQt5.QtWidgets import (
QSpinBox, QSpinBox,
) )
from bec_widgets.qt_utils.widget_IO import WidgetHierarchy from bec_widgets.qt_utils.widget_io import WidgetHierarchy
@pytest.fixture(scope="function") @pytest.fixture(scope="function")