From 0db890dd81b675e46d4676af0fdff58882d90795 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 26 Aug 2025 19:27:28 +0300 Subject: [PATCH] Remove unused dialog imports and exports Deleted CookieLoginDialog and CustomCommandDialog from imports and __all__ exports in ytsage_gui_dialogs/__init__.py, likely because these dialogs are no longer needed or have been removed from the codebase. --- src/gui/ytsage_gui_dialogs/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/gui/ytsage_gui_dialogs/__init__.py b/src/gui/ytsage_gui_dialogs/__init__.py index 013d97b..5d60dd3 100644 --- a/src/gui/ytsage_gui_dialogs/__init__.py +++ b/src/gui/ytsage_gui_dialogs/__init__.py @@ -14,8 +14,6 @@ This package contains all dialog classes organized by functionality: # Re-export all dialog classes for backward compatibility from src.gui.ytsage_gui_dialogs.ytsage_dialogs_base import AboutDialog, LogWindow from src.gui.ytsage_gui_dialogs.ytsage_dialogs_custom import ( - CookieLoginDialog, - CustomCommandDialog, CustomOptionsDialog, TimeRangeDialog, ) @@ -53,8 +51,6 @@ __all__ = [ "SponsorBlockCategoryDialog", # Custom functionality dialogs - "CustomCommandDialog", - "CookieLoginDialog", "CustomOptionsDialog", "TimeRangeDialog", ]