Plex-Bot-Music/PlexBot/__init__.py

9 lines
143 B
Python
Raw Normal View History

2020-07-23 06:21:41 +02:00
import yaml
def load_config(filename: str) -> None:
with open(filename, "r") as f:
config = yaml.safe_load(f)
return config