Browse Source
Fix type annotations for purge's limit param on Thread/TextChannel
Optional was missing.
pull/7269/head
Steve C
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
discord/channel.py
-
discord/threads.py
|
|
@ -372,7 +372,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): |
|
|
|
async def purge( |
|
|
|
self, |
|
|
|
*, |
|
|
|
limit: int = 100, |
|
|
|
limit: Optional[int] = 100, |
|
|
|
check: Callable[[Message], bool] = MISSING, |
|
|
|
before: Optional[SnowflakeTime] = None, |
|
|
|
after: Optional[SnowflakeTime] = None, |
|
|
|
|
|
@ -366,7 +366,7 @@ class Thread(Messageable, Hashable): |
|
|
|
async def purge( |
|
|
|
self, |
|
|
|
*, |
|
|
|
limit: int = 100, |
|
|
|
limit: Optional[int] = 100, |
|
|
|
check: Callable[[Message], bool] = MISSING, |
|
|
|
before: Optional[SnowflakeTime] = None, |
|
|
|
after: Optional[SnowflakeTime] = None, |
|
|
|