Browse Source

Add default parameter to CommandTree.sync

I'm not sure how I feel about this, since explicitly passing
guild=None seems better.
pull/7514/head
Rapptz 3 years ago
parent
commit
13e102b6b9
  1. 2
      discord/app_commands/tree.py
  2. 2
      discord/guild.py

2
discord/app_commands/tree.py

@ -543,7 +543,7 @@ class CommandTree(Generic[ClientT]):
return decorator
async def sync(self, *, guild: Optional[Snowflake]) -> List[AppCommand]:
async def sync(self, *, guild: Optional[Snowflake] = None) -> List[AppCommand]:
"""|coro|
Syncs the application commands to Discord.

2
discord/guild.py

@ -3344,7 +3344,7 @@ class Guild(Hashable):
-------
ClientException
The members intent is not enabled.
Returns
--------
Optional[List[:class:`Member`]]

Loading…
Cancel
Save