Plex-Bot-Music/PlexBot/__init__.py
Joshua Arulsamy a2b77ccc13 🎉 Initial files
2020-07-22 22:22:09 -06:00

9 lines
143 B
Python

import yaml
def load_config(filename: str) -> None:
with open(filename, "r") as f:
config = yaml.safe_load(f)
return config