From ee49d5b10c209e2ae1091a007a07ba0d4750f239 Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Sat, 6 Jul 2024 11:50:59 -0400 Subject: [PATCH] misc(aurora): make `target_type` lowercase --- aurora/models/moderation_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aurora/models/moderation_types.py b/aurora/models/moderation_types.py index 3921b2f..a6a4894 100644 --- a/aurora/models/moderation_types.py +++ b/aurora/models/moderation_types.py @@ -63,7 +63,7 @@ class Ban(Type): ctx.guild.id, ctx.author.id, cls.moderation_type, - 'USER', + 'user', target.id, None, None, @@ -149,7 +149,7 @@ class Tempban(Ban): ctx.guild.id, ctx.author.id, cls.moderation_type, - 'USER', + 'user', target.id, None, parsed_time,