You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import yaml
|
|
from pathlib import Path
|
|
|
|
def get_configs(ymal_files):
|
|
yaml_path = Path(__file__).parent / ymal_files
|
|
with yaml_path.open("r", encoding="utf-8") as f:
|
|
return yaml.load(f, Loader=yaml.FullLoader) |