pages.apps   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
1
""" This file is here to register apps. """
2
from django.apps import AppConfig
3
4
5
class HomeConfig(AppConfig):
6
    """ Register app. """
7
    name = 'pages'
8