Conditions | 3 |
Total Lines | 6 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | from dogpile.cache import make_region |
||
7 | def includeme(config): |
||
8 | settings = config.registry.settings |
||
9 | if not tree_region.is_configured: |
||
10 | tree_region.configure_from_config(settings, 'cache.tree.') |
||
11 | if not list_region.is_configured: |
||
12 | list_region.configure_from_config(settings, 'cache.list.') |
||
13 | |||
22 |