diff --git a/pyrelacs/app.py b/pyrelacs/app.py index bcf1cb6..4b50cf9 100644 --- a/pyrelacs/app.py +++ b/pyrelacs/app.py @@ -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)