From b752181781aa497360e2c0887e9499a0abce1835 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 4 May 2024 18:06:23 -0400 Subject: [PATCH] fix(aurora): oops lol --- aurora/utilities/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/utilities/utils.py b/aurora/utilities/utils.py index f6e69bf..b15a865 100644 --- a/aurora/utilities/utils.py +++ b/aurora/utilities/utils.py @@ -137,7 +137,7 @@ def generate_dict(bot: Red, result: dict, guild_id: int) -> dict: changes = json.loads(result[14].strip('"').replace('\\"', '"')) change_obj_list = [] for change in changes: - change_obj_list.append(Change.from_dict(bot=bot, **change)) + change_obj_list.append(Change.from_dict(bot=bot, data=change)) case = { "moderation_id": int(result[0]),