You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: interactions/api/models/guild.py
+30-2Lines changed: 30 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -699,7 +699,7 @@ async def create_channel(
699
699
:param topic?: The topic of that channel
700
700
:type topic: Optional[str]
701
701
:param bitrate?: (voice channel only) The bitrate (in bits) of the voice channel
702
-
:type bitrate Optional[int]
702
+
:type bitrate: Optional[int]
703
703
:param user_limit?: (voice channel only) Maximum amount of users in the channel
704
704
:type user_limit: Optional[int]
705
705
:param rate_limit_per_use?: Amount of seconds a user has to wait before sending another message (0-21600)
@@ -797,7 +797,7 @@ async def modify_channel(
797
797
:param topic?: The topic of that channel, defaults to the current value of the channel
798
798
:type topic: Optional[str]
799
799
:param bitrate?: (voice channel only) The bitrate (in bits) of the voice channel, defaults to the current value of the channel
800
-
:type bitrate Optional[int]
800
+
:type bitrate: Optional[int]
801
801
:param user_limit?: (voice channel only) Maximum amount of users in the channel, defaults to the current value of the channel
802
802
:type user_limit: Optional[int]
803
803
:param rate_limit_per_use?: Amount of seconds a user has to wait before sending another message (0-21600), defaults to the current value of the channel
0 commit comments