Browse Source

[commands] Fix exceptions in HelpCommand

pull/7726/head
Josh 3 years ago
committed by GitHub
parent
commit
1b70fad5ec
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      discord/ext/commands/help.py

4
discord/ext/commands/help.py

@ -271,7 +271,7 @@ class HelpCommand(HelpCommandCommand, Generic[ContextT]):
) )
async def __call__(self, context: ContextT, *args: Any, **kwargs: Any) -> Any: async def __call__(self, context: ContextT, *args: Any, **kwargs: Any) -> Any:
return await self.command_callback(context, *args, **kwargs) return await self._set_context(context, *args, **kwargs)
async def _set_context(self, context: ContextT, *args: Any, **kwargs: Any) -> Any: async def _set_context(self, context: ContextT, *args: Any, **kwargs: Any) -> Any:
_context.set(context) _context.set(context)
@ -288,7 +288,7 @@ class HelpCommand(HelpCommandCommand, Generic[ContextT]):
bot.add_command(self) # type: ignore bot.add_command(self) # type: ignore
def _remove_from_bot(self, bot: BotBase) -> None: def _remove_from_bot(self, bot: BotBase) -> None:
bot.remove_command(self) # type: ignore bot.remove_command(self.name)
self._eject_cog() self._eject_cog()
async def invoke(self, ctx: ContextT) -> None: async def invoke(self, ctx: ContextT) -> None:

Loading…
Cancel
Save