From 751bc7c2c5214410286bee35e2f731ce08493d81 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 5 Apr 2025 16:03:02 -0400 Subject: [PATCH] Fixed invalid number of parameters passed to signal handler. --- src/cthulhu/cthulhu.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cthulhu/cthulhu.py b/src/cthulhu/cthulhu.py index 4148638..40cc12d 100644 --- a/src/cthulhu/cthulhu.py +++ b/src/cthulhu/cthulhu.py @@ -103,8 +103,7 @@ class APIHelper: # Register for script change notifications self.app.getSignalManager().connectSignal( 'active-script-changed', - self._handleScriptChanged, - 'default' + self._handleScriptChanged ) def _handleScriptChanged(self, script):