parent
278bd98349
commit
4c8cd7bd16
1 changed files with 1 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
||||||
# pylint: disable=cyclic-import
|
# pylint: disable=cyclic-import
|
||||||
import json
|
import json
|
||||||
from ast import literal_eval
|
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from typing import Optional, Union
|
from typing import Optional, Union
|
||||||
|
|
||||||
|
@ -138,7 +137,7 @@ def generate_dict(bot: Red, result: dict, guild_id: int) -> dict:
|
||||||
if result[14] is not None:
|
if result[14] is not None:
|
||||||
json_str = result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]')
|
json_str = result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]')
|
||||||
logger.debug('%s\n%s', result[14], json_str)
|
logger.debug('%s\n%s', result[14], json_str)
|
||||||
changes = literal_eval(json_str)
|
changes = json.loads(json_str)
|
||||||
change_obj_list = []
|
change_obj_list = []
|
||||||
for change in changes:
|
for change in changes:
|
||||||
change_obj_list.append(Change.from_dict(bot=bot, data=change))
|
change_obj_list.append(Change.from_dict(bot=bot, data=change))
|
||||||
|
|
Loading…
Reference in a new issue