From 064784c9d7cb3b4ea2e57daabe2bbb2c0ab3aa47 Mon Sep 17 00:00:00 2001 From: cswimr Date: Thu, 22 Aug 2024 12:26:42 -0400 Subject: [PATCH] fix(aurora): fixed the `Note` moderation type handler using `cls.string` instead of `cls.verb` --- aurora/models/moderation_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/models/moderation_types.py b/aurora/models/moderation_types.py index 8205617..eb7d8db 100644 --- a/aurora/models/moderation_types.py +++ b/aurora/models/moderation_types.py @@ -37,7 +37,7 @@ class Note(Type): @classmethod async def handler(cls, ctx: commands.Context, target: Member | User, silent: bool, reason: str) -> 'Note': response = await ctx.send( - content=f"{target.mention} has {cls.embed_desc}{cls.string}!\n**Reason** - `{reason}`" + content=f"{target.mention} has {cls.embed_desc}{cls.verb}!\n**Reason** - `{reason}`" ) if silent is False: