diff --git a/discord/threads.py b/discord/threads.py index 5abbd8fee..b026661e8 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) + tag = parent.get_tag(tag_id) # pyright: ignore[reportAttributeAccessIssue] # parent here will be ForumChannel instance if tag is not None: tags.append(tag)