Browse Source
Fix missing typehint that causes an error for a type checker
pull/7441/head
Stocker
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
discord/threads.py
|
|
@ -46,6 +46,7 @@ if TYPE_CHECKING: |
|
|
|
ThreadMetadata, |
|
|
|
ThreadArchiveDuration, |
|
|
|
) |
|
|
|
from .types.snowflake import SnowflakeList |
|
|
|
from .guild import Guild |
|
|
|
from .channel import TextChannel, CategoryChannel |
|
|
|
from .member import Member |
|
|
@ -394,7 +395,7 @@ class Thread(Messageable, Hashable): |
|
|
|
if len(messages) > 100: |
|
|
|
raise ClientException('Can only bulk delete messages up to 100 messages') |
|
|
|
|
|
|
|
message_ids = [m.id for m in messages] |
|
|
|
message_ids: SnowflakeList = [m.id for m in messages] |
|
|
|
await self._state.http.delete_messages(self.id, message_ids) |
|
|
|
|
|
|
|
async def purge( |
|
|
|