11 lines
349 B
Python
11 lines
349 B
Python
import yaml
|
|
from md_pdf.consts import CONFIG_FILE
|
|
from md_pdf.exceptions import ConfigValidationException
|
|
|
|
|
|
def load_config(location=CONFIG_FILE):
|
|
try:
|
|
with open(location) as f:
|
|
return yaml.safe_load(f)
|
|
except FileNotFoundError:
|
|
raise ConfigValidationException("Can't find config file at {}".format(CONFIG_FILE))
|