def open_json()

in utils.py [0:0]


def open_json(input_file: str = None) -> dict:
    with open(input_file, 'r', encoding="utf8") as file_object:
        contents = json.load(file_object)
        logging.debug(contents)
        return contents