WIP: Refactor Aurora (3.0.0) #29

Draft
cswimr wants to merge 347 commits from aurora-pydantic into main
Showing only changes of commit 0b1d1d29e6 - Show all commits

View file

@ -177,6 +177,9 @@ class Moderation(AuroraGuildModel):
for change in changes:
change_obj_list.append(Change.from_dict(bot=bot, data=change))
if result[15] is not None:
metadata = json.loads(result[15])
case = {
"moderation_id": int(result[0]),
"guild_id": int(guild_id),
@ -194,7 +197,7 @@ class Moderation(AuroraGuildModel):
"resolve_reason": result[12],
"expired": bool(result[13]),
"changes": change_obj_list if result[14] else [],
"metadata": json.loads(result[15].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]')) if result[15] else {},
"metadata": metadata if result[15] else {},
}
return cls.from_dict(bot=bot, data=case)