From 39d2175a47e5faadff4034d021f6d55ff925fdee Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 30 Nov 2025 10:50:33 +0530 Subject: [PATCH] Remove unused signal --- src/calibre/gui2/viewer/llm.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/calibre/gui2/viewer/llm.py b/src/calibre/gui2/viewer/llm.py index f968746579..7b69ca0661 100644 --- a/src/calibre/gui2/viewer/llm.py +++ b/src/calibre/gui2/viewer/llm.py @@ -414,7 +414,6 @@ class LLMSettingsWidget(QWidget): class LLMSettingsDialog(Dialog): - actions_updated = pyqtSignal() def __init__(self, parent=None): super().__init__(title=_('AI Settings'), name='llm-settings-dialog', prefs=vprefs, parent=parent) @@ -437,7 +436,6 @@ class LLMSettingsDialog(Dialog): if not self.llm_config.commit(): self.tabs.setCurrentWidget(self.llm_config) return - self.actions_updated.emit() super().accept() # }}}