fix(aurora): trying ast

This commit is contained in:
Seaswimmer 2024-05-04 23:01:39 -04:00
parent cad24d852c
commit 278bd98349
Signed by untrusted user: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -1,5 +1,6 @@
# pylint: disable=cyclic-import
import json
from ast import literal_eval
from datetime import datetime, timedelta
from typing import Optional, Union
@ -137,7 +138,7 @@ def generate_dict(bot: Red, result: dict, guild_id: int) -> dict:
if result[14] is not None:
json_str = result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]')
logger.debug('%s\n%s', result[14], json_str)
changes = json.loads(json_str)
changes = literal_eval(json_str)
change_obj_list = []
for change in changes:
change_obj_list.append(Change.from_dict(bot=bot, data=change))