""" Created By: ishwor subedi Date: 2024-08-02 """ import yaml def load_config(file_path): with open(file_path, 'r') as file: config = yaml.safe_load(file) return config