OpenSubmitConfig.ready()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 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