Run linter
This commit is contained in:
@@ -5,14 +5,14 @@ from tornado import ioloop, web
|
||||
|
||||
class MainHandler(web.RequestHandler):
|
||||
def get(self):
|
||||
self.write(ujson.dumps({'test': True}))
|
||||
self.write(ujson.dumps({"test": True}))
|
||||
|
||||
|
||||
app = web.Application([
|
||||
(r'/', MainHandler)
|
||||
], debug=False,
|
||||
app = web.Application(
|
||||
[(r"/", MainHandler)],
|
||||
debug=False,
|
||||
compress_response=False,
|
||||
static_hash_cache=True
|
||||
static_hash_cache=True,
|
||||
)
|
||||
|
||||
app.listen(8000)
|
||||
|
||||
Reference in New Issue
Block a user