OpenSubmitConfig   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A ready() 0 1 1
1
from django.apps import AppConfig
2
3
# Give human readable names to apps in the Django admin view
4
class OpenSubmitConfig(AppConfig):
5
    name = 'opensubmit'
6
    verbose_name = "Backend"
7
8
    def ready(self):
9
    	from . import signalhandlers
10