handlers: Fix type of zulip_finish.

This commit is contained in:
Tim Abbott 2017-05-23 17:36:19 -07:00
parent 8b25766ff2
commit 315a9ee72e
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ class AsyncDjangoHandler(tornado.web.RequestHandler, base.BaseHandler):
return response
def zulip_finish(self, response, request, apply_markdown):
# type: (HttpResponse, HttpRequest, bool) -> None
# type: (Dict[str, Any], HttpRequest, bool) -> None
# Make sure that Markdown rendering really happened, if requested.
# This is a security issue because it's where we escape HTML.
# c.f. ticket #64