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
parent
commit
834e23dc00
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/channel.py
  2. 2
      discord/threads.py

2
discord/channel.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,

2
discord/threads.py

@ -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,

Loading…
Cancel
Save