Commit bf3a10897460faf77efd9f12f701958b9ea5f497

Authored by Antoine Goutenoir
1 parent a6f63a6d
Exists in master

Clean up.

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
flaskr/content.py
1 1 from collections import namedtuple
2 2 from yaml import safe_load as yaml_safe_load
3 3  
  4 +
4 5 with open('content.yml', 'r') as content_file:
5 6 content_dict = yaml_safe_load(content_file.read())
6 7  
... ...