[project] changing to absolut imports

This commit is contained in:
wendtalexander 2024-09-30 12:10:54 +02:00
parent cbc86598b0
commit 56c8b59ccd

View File

@ -6,11 +6,13 @@ from PyQt6.QtWidgets import QApplication
from pyrelacs import info
from pyrelacs.ui.mainwindow import PyRelacs
from pyrelacs.util.logging import config_logging
import resources
log = config_logging()
from . import resources # best created with pyside6-rcc resources.qrc -o resources.py (rcc produces an error...)
from pyrelacs import (
resources,
) # best created with pyside6-rcc resources.qrc -o resources.py (rcc produces an error...)
def main():
app = QApplication(sys.argv)