From 97fbcf020f3b7f084bd30c1fe1847f96cb30cb73 Mon Sep 17 00:00:00 2001 From: Wyatt Hoodes Date: Mon, 22 Jul 2019 10:18:25 -1000 Subject: [PATCH] test_tornado: Remove duplicate type annotation. `self.session_cookie` is already typed in the `setUp` method. --- zerver/tests/test_tornado.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/tests/test_tornado.py b/zerver/tests/test_tornado.py index 322a6e4e73..e9bdcb6125 100644 --- a/zerver/tests/test_tornado.py +++ b/zerver/tests/test_tornado.py @@ -49,7 +49,7 @@ class TornadoWebTestCase(AsyncHTTPTestCase, ZulipTestCase): def tearDown(self) -> None: super().tearDown() - self.session_cookie = None # type: Optional[Dict[str, str]] + self.session_cookie = None @override_settings(DEBUG=False) def get_app(self) -> Application: