From 2d180489ce03829ab677d02fbb9fe5550b54724f Mon Sep 17 00:00:00 2001 From: Lilly Rose Berner Date: Tue, 30 Aug 2022 06:53:05 +0200 Subject: [PATCH] Fix KeyError constructing groups when no module is present --- discord/app_commands/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index 4027fde44..5530aa154 100644 --- a/discord/app_commands/commands.py +++ b/discord/app_commands/commands.py @@ -1577,7 +1577,7 @@ class Group: # This is pretty hacky # It allows the module to be fetched if someone just constructs a bare Group object though. self.module = inspect.currentframe().f_back.f_globals['__name__'] # type: ignore - except (AttributeError, IndexError): + except (AttributeError, IndexError, KeyError): self.module = None self._children: Dict[str, Union[Command, Group]] = {}