mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 12:18:59 +00:00
Make description parameter of Guild.create_sticker non-Optional
Co-authored-by: James Hilton-Balfe <gobot1234yt@gmail.com>
This commit is contained in:
parent
8072e294a8
commit
b77cf500a2
@ -2405,7 +2405,7 @@ class Guild(Hashable):
|
||||
self,
|
||||
*,
|
||||
name: str,
|
||||
description: Optional[str] = None,
|
||||
description: str,
|
||||
emoji: str,
|
||||
file: File,
|
||||
reason: Optional[str] = None,
|
||||
@ -2423,8 +2423,8 @@ class Guild(Hashable):
|
||||
-----------
|
||||
name: :class:`str`
|
||||
The sticker name. Must be at least 2 characters.
|
||||
description: Optional[:class:`str`]
|
||||
The sticker's description. Can be ``None``.
|
||||
description: :class:`str`
|
||||
The sticker's description.
|
||||
emoji: :class:`str`
|
||||
The name of a unicode emoji that represents the sticker's expression.
|
||||
file: :class:`File`
|
||||
@ -2448,7 +2448,6 @@ class Guild(Hashable):
|
||||
'name': name,
|
||||
}
|
||||
|
||||
if description:
|
||||
payload['description'] = description
|
||||
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user