From 6a3a610cd3babb29edf61fe5489c5e207b2dadf8 Mon Sep 17 00:00:00 2001 From: wendtalexander Date: Mon, 30 Sep 2024 09:46:27 +0200 Subject: [PATCH] [project] changing to absolut imports --- pyrelacs/ui/mainwindow.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pyrelacs/ui/mainwindow.py b/pyrelacs/ui/mainwindow.py index 24dc71e..435ffe9 100644 --- a/pyrelacs/ui/mainwindow.py +++ b/pyrelacs/ui/mainwindow.py @@ -8,7 +8,7 @@ from PyQt6.QtWidgets import ( QMainWindow, QPlainTextEdit, QMenuBar, - QStatusBar + QStatusBar, ) import uldaq import numpy as np @@ -18,15 +18,17 @@ import pyqtgraph as pg from pathlib import Path as path from scipy.signal import welch, find_peaks -from ..worker import Worker -from ..repros.repros import Repro -from ..util.logging import config_logging -from .about import AboutDialog +from pyrelacs.worker import Worker +from pyrelacs.repros.repros import Repro +from pyrelacs.util.logging import config_logging +from pyrelacs.ui.about import AboutDialog + log = config_logging() _root = path(__file__).parent.parent from IPython import embed + class PyRelacs(QMainWindow): def __init__(self): super().__init__()