Browse Source

Document user_limit argument in StageChannel.edit()

pull/10109/head
Jakub Kuczys 2 years ago
committed by dolfies
parent
commit
b5cc41a4d3
  1. 3
      discord/channel.py

3
discord/channel.py

@ -1799,6 +1799,7 @@ class StageChannel(VocalGuildChannel):
*,
name: str = ...,
nsfw: bool = ...,
user_limit: int = ...,
position: int = ...,
sync_permissions: int = ...,
category: Optional[CategoryChannel] = ...,
@ -1838,6 +1839,8 @@ class StageChannel(VocalGuildChannel):
The new channel's position.
nsfw: :class:`bool`
To mark the channel as NSFW or not.
user_limit: :class:`int`
The new channel's user limit.
sync_permissions: :class:`bool`
Whether to sync permissions with the channel's new or pre-existing
category. Defaults to ``False``.

Loading…
Cancel
Save