| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| 1 | # -*- coding: utf-8 -*- |
||
| 8 | class Globals(object): |
||
| 9 | """Container for objects available throughout the life of the application. |
||
| 10 | |||
| 11 | One instance of Globals is created during application initialization and |
||
| 12 | is available during requests via the 'app_globals' variable. |
||
| 13 | |||
| 14 | """ |
||
| 15 | |||
| 16 | def __init__(self): |
||
| 17 | """Do nothing, by default.""" |
||
| 18 | pass |
||
| 19 |