From 315a9ee72ed272e526235f0abe560b2ba4c088a0 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 23 May 2017 17:36:19 -0700 Subject: [PATCH] handlers: Fix type of zulip_finish. --- zerver/tornado/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/tornado/handlers.py b/zerver/tornado/handlers.py index 07fa9cef23..3fa3437430 100644 --- a/zerver/tornado/handlers.py +++ b/zerver/tornado/handlers.py @@ -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