WIP: Moderation type registry #26
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
@ -11,7 +12,6 @@ from redbot.core.bot import Red
|
|||
from redbot.core.utils.chat_formatting import error
|
||||
|
||||
from aurora.utilities.config import config
|
||||
from aurora.utilities.logger import logger
|
||||
|
||||
|
||||
def check_permissions(
|
||||
|
@ -135,9 +135,7 @@ def generate_dict(bot: Red, result: dict, guild_id: int) -> dict:
|
|||
duration = None
|
||||
|
||||
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.loads(result[14]))
|
||||
change_obj_list = []
|
||||
for change in changes:
|
||||
change_obj_list.append(Change.from_dict(bot=bot, data=change))
|
||||
|
|
Loading…
Reference in a new issue