From d9921993c82a8f2792a1b846b7866147a769a8f7 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Mon, 9 Feb 2026 13:44:59 +0000 Subject: [PATCH] fix(ui): remove non-existent AttachmentManagerWidget from imports --- ui/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/__init__.py b/ui/__init__.py index 02f2d76..9a9ca91 100644 --- a/ui/__init__.py +++ b/ui/__init__.py @@ -7,7 +7,7 @@ from .loadout_manager import ( LoadoutManagerDialog, LoadoutConfig, AttachmentConfig, WeaponSelectorDialog, ArmorSelectorDialog ) -from .attachment_selector import AttachmentSelectorDialog, AttachmentManagerWidget +from .attachment_selector import AttachmentSelectorDialog __all__ = [ 'MainWindow', @@ -19,5 +19,4 @@ __all__ = [ 'WeaponSelectorDialog', 'ArmorSelectorDialog', 'AttachmentSelectorDialog', - 'AttachmentManagerWidget', ]