Browse Source

[commands] Fix unknown generic type in tree_cls

pull/7831/head
Rapptz 3 years ago
parent
commit
994660faad
  1. 2
      discord/ext/commands/bot.py

2
discord/ext/commands/bot.py

@ -156,7 +156,7 @@ class BotBase(GroupMixin[None]):
self,
command_prefix: PrefixType[BotT],
help_command: Optional[HelpCommand] = _default,
tree_cls: Type[app_commands.CommandTree] = app_commands.CommandTree,
tree_cls: Type[app_commands.CommandTree[Any]] = app_commands.CommandTree,
description: Optional[str] = None,
**options: Any,
) -> None:

Loading…
Cancel
Save