Browse Source

remove `#pyright: ignore` for now

pull/10178/head
owocado 4 weeks ago
committed by GitHub
parent
commit
ecd61519ea
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      discord/threads.py

2
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)

Loading…
Cancel
Save