From ad25c05a840dc9d650e747eb798446fd25556aba Mon Sep 17 00:00:00 2001 From: owocado <24418520+owocado@users.noreply.github.com> Date: Wed, 30 Apr 2025 17:26:35 +0530 Subject: [PATCH] fix types --- discord/types/interactions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/types/interactions.py b/discord/types/interactions.py index 310fb7950..5dc62ce70 100644 --- a/discord/types/interactions.py +++ b/discord/types/interactions.py @@ -69,8 +69,8 @@ class PartialChannel(_BasePartialChannel): nsfw: bool flags: int rate_limit_per_user: int - parent_id: Snowflake - last_message_id: Snowflake + parent_id: Optional[Snowflake] + last_message_id: Optional[Snowflake] last_pin_timestamp: NotRequired[str]