GITLAB
carbon
/
travel-carbon-footprint.irap.omp.eu
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
10
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
bf3a10897460faf77efd9f12f701958b9ea5f497
Authored by
Antoine Goutenoir
2019-10-22 15:02:23 +0200
1 parent
a6f63a6d
Exists in
master
Clean up.
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
flaskr/content.py
Inline
Side-by-side
flaskr/content.py
Wrap text
Diff comments
View file @
bf3a108
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
...
...