fix(widgets): removed widget module import of sub widgets

This commit is contained in:
2024-06-19 13:38:46 +02:00
parent 6dabbf874f
commit 216511b951
11 changed files with 17 additions and 16 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ a `StopButton` within a GUI layout:
```python
from qtpy.QtWidgets import QWidget, QVBoxLayout
from bec_widgets.widgets import StopButton
from bec_widgets.widgets.buttons import StopButton
class MyGui(QWidget):