fix(forums): fixed a single command being marked as a group command
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
This commit is contained in:
parent
f735637bdc
commit
ca82cb181b
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class Forums(commands.Cog):
|
||||||
async def resolvedset(self, ctx: commands.Context):
|
async def resolvedset(self, ctx: commands.Context):
|
||||||
"""Manages the configuration for the [p]resolved command."""
|
"""Manages the configuration for the [p]resolved command."""
|
||||||
|
|
||||||
@resolvedset.group(name='show', invoke_without_command=True, aliases=['settings'])
|
@resolvedset.command(name='show', aliases=['settings'])
|
||||||
async def resolvedset_show(self, ctx: commands.Context):
|
async def resolvedset_show(self, ctx: commands.Context):
|
||||||
"""Shows the current cog configuration."""
|
"""Shows the current cog configuration."""
|
||||||
channel_id = await self.config.guild(ctx.guild).forum_channel()
|
channel_id = await self.config.guild(ctx.guild).forum_channel()
|
||||||
|
|
Loading…
Reference in a new issue