Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1import json
2import os
3
4from flask import current_app
5from flask import url_for
6
7
8def base_context():
9 """
10 Used to define global template values
11
12
13 Returns
14 -------
15 dict
16 copy of dictionary
17 """
18
19 base_context = {}
20 return base_context.copy()