From ad5f304d4e30eef69a04b42e7950c44901b8bbda Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Sun, 25 Jan 2026 14:05:55 +0200 Subject: [PATCH] Move main.py to ytsage/ and update imports Renamed main.py to ytsage/main.py and updated relative imports to reflect the new module structure. --- main.py => ytsage/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename main.py => ytsage/main.py (85%) diff --git a/main.py b/ytsage/main.py similarity index 85% rename from main.py rename to ytsage/main.py index ce49b44..6427578 100644 --- a/main.py +++ b/ytsage/main.py @@ -2,8 +2,8 @@ import sys from PySide6.QtWidgets import QApplication, QMessageBox -from src.utils.ytsage_logger import logger -from src.gui.ytsage_gui_main import YTSageApp # Import the main application class from ytsage_gui_main +from .utils.ytsage_logger import logger +from .gui.ytsage_gui_main import YTSageApp # Import the main application class from ytsage_gui_main def show_error_dialog(message):