From 82b5f5d3c23585a9aa86d0905aea857e5b29e23c Mon Sep 17 00:00:00 2001 From: dolfies Date: Wed, 29 Mar 2023 20:44:28 -0400 Subject: [PATCH] Fix Thread last_pin_timestamp typing --- discord/types/threads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/types/threads.py b/discord/types/threads.py index 7feeec64f..105888ee0 100644 --- a/discord/types/threads.py +++ b/discord/types/threads.py @@ -65,7 +65,7 @@ class Thread(TypedDict): member_ids_preview: List[Snowflake] member: NotRequired[ThreadMember] last_message_id: NotRequired[Optional[Snowflake]] - last_pin_timestamp: NotRequired[Optional[Snowflake]] + last_pin_timestamp: NotRequired[Optional[str]] newly_created: NotRequired[bool] flags: NotRequired[int] applied_tags: NotRequired[List[Snowflake]]