From 7047e36b68223157c1f18317e60074fa4d4e669d Mon Sep 17 00:00:00 2001 From: owocado <24418520+owocado@users.noreply.github.com> Date: Wed, 30 Apr 2025 12:08:32 +0100 Subject: [PATCH] fix --- discord/threads.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/threads.py b/discord/threads.py index 0872ac9c9..5c9176d49 100644 --- a/discord/threads.py +++ b/discord/threads.py @@ -277,9 +277,9 @@ class Thread(Messageable, Hashable): parent = self.parent for tag_id in self._applied_tags: - tag = parent.get_tag( + tag = parent.get_tag( # pyright: ignore[reportAttributeAccessIssue] # parent here will be ForumChannel instance tag_id - ) # pyright: ignore[reportAttributeAccessIssue] # parent here will be ForumChannel instance + ) if tag is not None: tags.append(tag)