From ecd61519ea5ec576e05cf484a33e14ad2095acc9 Mon Sep 17 00:00:00 2001 From: owocado <24418520+owocado@users.noreply.github.com> Date: Wed, 30 Apr 2025 16:20:53 +0530 Subject: [PATCH] remove `#pyright: ignore` for now --- discord/threads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/threads.py b/discord/threads.py index b026661e8..5abbd8fee 100644 --- a/discord/threads.py +++ b/discord/threads.py @@ -277,7 +277,7 @@ class Thread(Messageable, Hashable): parent = self.parent for tag_id in self._applied_tags: - tag = parent.get_tag(tag_id) # pyright: ignore[reportAttributeAccessIssue] # parent here will be ForumChannel instance + tag = parent.get_tag(tag_id) if tag is not None: tags.append(tag)