forked from bot/app
7 lines
166 B
Python
7 lines
166 B
Python
from yaml import load, FullLoader
|
|
|
|
|
|
def load_from_yaml(file: str) -> dict:
|
|
with open(file, 'r', encoding='utf-8') as f:
|
|
return load(f, Loader=FullLoader)
|