atramhasis.data   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 8
rs 10
c 0
b 0
f 0
1
from dogpile.cache import make_region
2
3
popular_concepts_dict = {}
4
popular_concepts = make_region().configure(
5
    'dogpile.cache.memory',
6
    arguments={
7
        'cache_dict': {}
8
    }
9
)
10