Files
doczyai-pipelines/Doczy.AI_Automation/utils/reader.py
T

7 lines
116 B
Python
Raw Normal View History

2024-05-07 18:13:51 +05:30
import yaml
def read_yaml(file_path):
2024-05-20 17:46:45 +05:30
with open (file_path, 'r') as file:
return yaml.safe_load(file)