lunarflu HF staff commited on
Commit
3a5f6f2
1 Parent(s): be053da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -169,7 +169,7 @@ async def list_tags(ctx, forum_channel_id: int):
169
  forum_channel = bot.get_channel(forum_channel_id)
170
  if isinstance(forum_channel, discord.ForumChannel):
171
  tags = forum_channel.available_tags
172
- tag_list = [tag.name for tag in tags]
173
  await ctx.send(f'Available tags: {", ".join(tag_list)}')
174
 
175
  #----------------------------------------------------------------------------------------------
 
169
  forum_channel = bot.get_channel(forum_channel_id)
170
  if isinstance(forum_channel, discord.ForumChannel):
171
  tags = forum_channel.available_tags
172
+ tag_list = [f"{tag.name} (ID: {tag.id})" for tag in tags]
173
  await ctx.send(f'Available tags: {", ".join(tag_list)}')
174
 
175
  #----------------------------------------------------------------------------------------------