def parse_json()

in rules/customer-fc/ecs_security_group_has_specified_cidr.py [0:0]


def parse_json(content):
    try:
        return json.loads(content)
    except Exception as e:
        logger.error('Parse content:{} to json error:{}.'.format(content, e))
        return None