def open_yaml()

in utils.py [0:0]


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