From 08278c2de4a43a5d1372b0e4592c631aa10a51aa Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Mon, 12 Aug 2024 17:49:51 -0400 Subject: [PATCH] fix(aurora): fixed some formatting --- aurora/aurora.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/aurora.py b/aurora/aurora.py index 63900ef..682bd11 100644 --- a/aurora/aurora.py +++ b/aurora/aurora.py @@ -1128,7 +1128,7 @@ class Aurora(commands.Cog): registered_type = type_registry.get(moderation_type) except RegistryKeyError: types = "`, `".join(type_registry.keys()) - await ctx.send(error("`moderation_type` is not a valid moderation type.\nValid types are:\n" + types)) + await ctx.send(error(f"`{moderation_type}` is not a valid moderation type.\nValid types are:\n`{types}`")) return msg = await ctx.send(embed=await type_embed(ctx, registered_type)) await msg.edit(view=Types(ctx, msg, registered_type))