mirror of
https://github.com/nqrduck/nqrduck-spectrometer.git
synced 2024-11-09 12:30:01 +00:00
Fixed imports.
This commit is contained in:
parent
128318c45f
commit
e7761a66a6
4 changed files with 5 additions and 5 deletions
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "nqrduck-spectrometer"
|
||||
version = "0.0.3"
|
||||
version = "0.0.4"
|
||||
authors = [
|
||||
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
||||
]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from PyQt5.QtCore import pyqtSignal, QObject
|
||||
from core.module.module_model import ModuleModel
|
||||
from nqrduck.module.module_model import ModuleModel
|
||||
|
||||
|
||||
class Spectrometer(ModuleModel):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from core.module.module_controller import ModuleController
|
||||
from nqrduck.module.module_controller import ModuleController
|
||||
|
||||
|
||||
class SpectrometerController(ModuleController):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from PyQt5.QtWidgets import QWidget
|
||||
from core.module.module_view import ModuleView
|
||||
from modules.spectrometer.spectrometer_widget import Ui_Form
|
||||
from nqrduck.module.module_view import ModuleView
|
||||
from .spectrometer_widget import Ui_Form
|
||||
|
||||
|
||||
class SpectrometerView(ModuleView):
|
||||
|
|
Loading…
Reference in a new issue