Browse Source

Add fallback overloads for CommandTree

pull/7492/head
Rapptz 3 years ago
parent
commit
6110fe5b1c
  1. 31
      discord/app_commands/tree.py

31
discord/app_commands/tree.py

@ -210,6 +210,17 @@ class CommandTree:
) -> Optional[Union[Command, Group]]:
...
@overload
def remove_command(
self,
command: str,
/,
*,
guild: Optional[Snowflake] = ...,
type: AppCommandType = ...,
) -> Optional[Union[Command, ContextMenu, Group]]:
...
def remove_command(
self,
command: str,
@ -278,6 +289,17 @@ class CommandTree:
) -> Optional[Union[Command, Group]]:
...
@overload
def get_command(
self,
command: str,
/,
*,
guild: Optional[Snowflake] = ...,
type: AppCommandType = ...,
) -> Optional[Union[Command, ContextMenu, Group]]:
...
def get_command(
self,
command: str,
@ -339,6 +361,15 @@ class CommandTree:
) -> List[Union[Command, Group]]:
...
@overload
def get_commands(
self,
*,
guild: Optional[Snowflake] = ...,
type: AppCommandType = ...,
) -> Union[List[Union[Command, Group]], List[ContextMenu]]:
...
def get_commands(
self,
*,

Loading…
Cancel
Save