mirror of
https://github.com/bec-project/bec_widgets.git
synced 2026-06-04 04:18:41 +02:00
fix: module paths
This commit is contained in:
+1
-2
@@ -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):
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user