HttpHandler   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A get() 0 2 1
1
from tornado.web import RequestHandler
2
from django.conf import settings
3
4
5
class HttpHandler(RequestHandler):
6
7
    def get(self):
8
        self.write(settings.VALIDATION_IS_OK)
9