Browse Source

fix

pull/10178/head
owocado 4 weeks ago
parent
commit
7047e36b68
  1. 4
      discord/threads.py

4
discord/threads.py

@ -277,9 +277,9 @@ class Thread(Messageable, Hashable):
parent = self.parent parent = self.parent
for tag_id in self._applied_tags: 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 tag_id
) # pyright: ignore[reportAttributeAccessIssue] # parent here will be ForumChannel instance )
if tag is not None: if tag is not None:
tags.append(tag) tags.append(tag)

Loading…
Cancel
Save