diff options
| -rw-r--r-- | bot/cogs/tags.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py index afdd6c1dc..7499b2b1c 100644 --- a/bot/cogs/tags.py +++ b/bot/cogs/tags.py @@ -151,10 +151,10 @@ class Tags: return tag_data @group(name='tags', aliases=('tag', 't'), hidden=True, invoke_without_command=True) - async def tags_group(self, ctx: Context): + async def tags_group(self, ctx: Context, *, tag_name: TagNameConverter=None): """Show all known tags, a single tag, or run a subcommand.""" - await ctx.invoke(self.get_command) + await ctx.invoke(self.get_command, tag_name=tag_name) @tags_group.command(name='get', aliases=('show', 'g')) async def get_command(self, ctx: Context, *, tag_name: TagNameConverter=None): |