mirror of
https://github.com/nqrduck/nqrduck-broadband.git
synced 2024-12-22 07:40:27 +00:00
Change to quackseq structure.
This commit is contained in:
parent
47ef932695
commit
1fc523b271
3 changed files with 3 additions and 2 deletions
|
@ -25,6 +25,7 @@ dependencies = [
|
|||
"pyqt6",
|
||||
"nqrduck",
|
||||
"nqrduck-spectrometer",
|
||||
"quackseq",
|
||||
]
|
||||
|
||||
[project.entry-points."nqrduck"]
|
||||
|
|
|
@ -5,7 +5,7 @@ import numpy as np
|
|||
import json
|
||||
from PyQt6.QtCore import pyqtSlot, pyqtSignal, QTimer
|
||||
from PyQt6.QtWidgets import QApplication
|
||||
from nqrduck_spectrometer.measurement import Measurement
|
||||
from quackseq.measurement import Measurement
|
||||
from nqrduck.module.module_controller import ModuleController
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
|
|
@ -6,7 +6,7 @@ from collections import OrderedDict
|
|||
from PyQt6.QtWidgets import QApplication
|
||||
from PyQt6.QtCore import pyqtSignal, QObject
|
||||
from nqrduck.module.module_model import ModuleModel
|
||||
from nqrduck_spectrometer.measurement import Measurement
|
||||
from quackseq.measurement import Measurement
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
Loading…
Reference in a new issue