WIP: Moderation type registry #26

Closed
cswimr wants to merge 146 commits from aurora-3rd-party into main
Showing only changes of commit 0553856aa9 - Show all commits

View file

@ -1,6 +1,5 @@
# pylint: disable=cyclic-import
import json
from ast import literal_eval
from datetime import datetime, timedelta
from typing import Optional, Union
@ -135,7 +134,7 @@ def generate_dict(bot: Red, result: dict, guild_id: int) -> dict:
duration = None
if result[14] is not None:
changes = literal_eval(json.loads(result[14]))
changes = json.loads(result[14])
change_obj_list = []
for change in changes:
change_obj_list.append(Change.from_dict(bot=bot, data=change))