6 lines
114 B
Python
6 lines
114 B
Python
|
|
import yaml
|
||
|
|
|
||
|
|
|
||
|
|
def read_yaml(file_path):
|
||
|
|
with open (file_path,'r') as file:
|
||
|
|
return yaml.safe_load(file)
|