From 16f1760dd08a91649f594799fff4c39bdf52c0ac Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Sun, 7 May 2023 15:22:38 +0200 Subject: [PATCH] Document user_limit argument in StageChannel.edit() --- discord/channel.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/channel.py b/discord/channel.py index cd5490b2e..907d0b4bd 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -1687,6 +1687,7 @@ class StageChannel(VocalGuildChannel): *, name: str = ..., nsfw: bool = ..., + user_limit: int = ..., position: int = ..., sync_permissions: int = ..., category: Optional[CategoryChannel] = ..., @@ -1726,6 +1727,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``.