From 71837dffc9f8cbf6a6c2e8b2a8ca466030595c1d Mon Sep 17 00:00:00 2001 From: wendtalexander Date: Fri, 11 Oct 2024 14:09:47 +0200 Subject: [PATCH] [app] removing logging --- pyrelacs/app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyrelacs/app.py b/pyrelacs/app.py index 4b50cf9..587e2ef 100644 --- a/pyrelacs/app.py +++ b/pyrelacs/app.py @@ -5,9 +5,6 @@ from PyQt6.QtWidgets import QApplication from pyrelacs import info from pyrelacs.ui.mainwindow import PyRelacs -from pyrelacs.util.logging import config_logging - -log = config_logging() from pyrelacs import ( resources, @@ -28,6 +25,7 @@ def main(): x = int(settings.value("app/pos_x", 100)) y = int(settings.value("app/pos_y", 100)) + # load config window = PyRelacs() window.setMinimumWidth(200) window.setMinimumHeight(200)