forked from awendt/pyrelacs
[project] changing to absolut imports
This commit is contained in:
parent
8b02b9083f
commit
6a3a610cd3
@ -8,7 +8,7 @@ from PyQt6.QtWidgets import (
|
|||||||
QMainWindow,
|
QMainWindow,
|
||||||
QPlainTextEdit,
|
QPlainTextEdit,
|
||||||
QMenuBar,
|
QMenuBar,
|
||||||
QStatusBar
|
QStatusBar,
|
||||||
)
|
)
|
||||||
import uldaq
|
import uldaq
|
||||||
import numpy as np
|
import numpy as np
|
||||||
@ -18,15 +18,17 @@ import pyqtgraph as pg
|
|||||||
from pathlib import Path as path
|
from pathlib import Path as path
|
||||||
from scipy.signal import welch, find_peaks
|
from scipy.signal import welch, find_peaks
|
||||||
|
|
||||||
from ..worker import Worker
|
from pyrelacs.worker import Worker
|
||||||
from ..repros.repros import Repro
|
from pyrelacs.repros.repros import Repro
|
||||||
from ..util.logging import config_logging
|
from pyrelacs.util.logging import config_logging
|
||||||
from .about import AboutDialog
|
from pyrelacs.ui.about import AboutDialog
|
||||||
|
|
||||||
log = config_logging()
|
log = config_logging()
|
||||||
_root = path(__file__).parent.parent
|
_root = path(__file__).parent.parent
|
||||||
|
|
||||||
from IPython import embed
|
from IPython import embed
|
||||||
|
|
||||||
|
|
||||||
class PyRelacs(QMainWindow):
|
class PyRelacs(QMainWindow):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
Loading…
Reference in New Issue
Block a user