fix: module paths

This commit is contained in:
2023-07-19 17:35:33 +02:00
parent d8c101cdd7
commit e7f644c507
2 changed files with 3 additions and 5 deletions
+1 -2
View File
@@ -7,8 +7,7 @@ from PyQt5 import uic
from PyQt5.QtCore import pyqtSignal
from PyQt5.QtWidgets import QApplication, QMainWindow
from scan2d_plot import BECScanPlot2D
from .scan_plot import BECScanPlot
from scan_plot import BECScanPlot
class BEC_UI(QMainWindow):
+2 -3
View File
@@ -1,12 +1,11 @@
from PyQt5.QtDesigner import QPyDesignerCustomWidgetPlugin
from PyQt5.QtGui import QIcon
from .scan_plot import BECScanPlot
from scan_plot import BECScanPlot
class BECScanPlotPlugin(QPyDesignerCustomWidgetPlugin):
def __init__(self, parent=None):
super(BECScanPlotPlugin, self).__init__(parent)
super().__init__(parent)
self._initialized = False