Does anyone have an example of creating a Forum thread and using applied_tags?
What do I pass to applied_tags here?
await announce_channel.create_thread(name='name', content='message', applied_tags=news_tag_id)
I see in the documentation says Sequence[abc.Snowflake], and it seems to just be the ID of the tag. So I pass the ID of the tag and I receive a TypeError: 'int' object is not iterable

