(self)
| 181 | |
| 182 | class NullHandler(tornado.web.RequestHandler): |
| 183 | def get(self): |
| 184 | arg = self.request.arguments.get('type', []) |
| 185 | if len(arg) > 0 and arg[0] == 'tokens': |
| 186 | return self.get_tokens() |
| 187 | else: |
| 188 | return self.get_fingerprints() |
| 189 | |
| 190 | def get_tokens(self): |
| 191 | ids = self.request.arguments.get('id', []) |
nothing calls this directly
no test coverage detected