Compare commits

..

2 commits

Author SHA1 Message Date
85411ef585
fix(forums): attempting a fix to tagset
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
2023-09-07 18:35:11 -04:00
4fb42065b4
misc(forums): formatting changes 2023-09-07 18:30:57 -04:00

View file

@ -95,7 +95,6 @@ class Forums(commands.Cog):
else:
await ctx.send("Please provide a valid role that exists in the request roles list.")
# Function to create select options
def create_select_options(self, ctx: commands.Context, data):
options = []
for tag in data:
@ -105,11 +104,10 @@ class Forums(commands.Cog):
@forumsconfig.command(name="tagset")
async def forumsconfig_tag_set(self, ctx: commands.Context, channel: discord.ForumChannel):
# Create select options from the proxy data
options = self.create_select_options(ctx, channel.available_tags)
config = Config.get_conf(None, cog_name='Forums', identifier=2352711325)
tag = channel.get_tag(await config.guild(ctx.guild).forum_tag())
msg = await ctx.send(f"Forum tag is currently set to `{tag}`.")
msg = await ctx.send(f"Forum tag is currently set to `{str(tag)}`.")
await msg.edit(view=SelectView(msg, options))
class Select(ui.Select):