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.
This commit is contained in:
oop7
2026-01-25 14:05:55 +02:00
parent 7efcfaa85b
commit ad5f304d4e
+2 -2
View File
@@ -2,8 +2,8 @@ import sys
from PySide6.QtWidgets import QApplication, QMessageBox from PySide6.QtWidgets import QApplication, QMessageBox
from src.utils.ytsage_logger import logger from .utils.ytsage_logger import logger
from src.gui.ytsage_gui_main import YTSageApp # Import the main application class from ytsage_gui_main from .gui.ytsage_gui_main import YTSageApp # Import the main application class from ytsage_gui_main
def show_error_dialog(message): def show_error_dialog(message):