Browse Source

Change missing application ID error to be more descriptive

pull/7696/head
Rapptz 3 years ago
parent
commit
8ced1143e3
  1. 9
      discord/app_commands/tree.py

9
discord/app_commands/tree.py

@ -80,6 +80,11 @@ __all__ = ('CommandTree',)
ClientT = TypeVar('ClientT', bound='Client')
APP_ID_NOT_FOUND = (
'Client does not have an application_id set. Either the function was called before on_ready '
'was called or application_id was not passed to the Client constructor.'
)
def _retrieve_guild_ids(
command: Any, guild: Optional[Snowflake] = MISSING, guilds: List[Snowflake] = MISSING
@ -164,7 +169,7 @@ class CommandTree(Generic[ClientT]):
The application's commands.
"""
if self.client.application_id is None:
raise ClientException('Client does not have an application ID set')
raise ClientException(APP_ID_NOT_FOUND)
if guild is None:
commands = await self._http.get_global_commands(self.client.application_id)
@ -853,7 +858,7 @@ class CommandTree(Generic[ClientT]):
"""
if self.client.application_id is None:
raise ClientException('Client does not have an application ID set')
raise ClientException(APP_ID_NOT_FOUND)
commands = self._get_all_commands(guild=guild)
payload = [command.to_dict() for command in commands]

Loading…
Cancel
Save