From 0152fa2152c7a3c645badf16d2e2dc4759cdbf11 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Mon, 27 Jul 2020 23:01:31 -0400 Subject: [PATCH] Remove type hints --- tests/unit/ext/test_aiohttp_py35.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/ext/test_aiohttp_py35.py b/tests/unit/ext/test_aiohttp_py35.py index e34cefa9..6f7b0205 100644 --- a/tests/unit/ext/test_aiohttp_py35.py +++ b/tests/unit/ext/test_aiohttp_py35.py @@ -58,7 +58,7 @@ class ApplicationTests(AioHTTPTestCase): Override the get_app method to return your application. """ container = ApplicationContainer() - app: web.Application = container.app() + app = container.app() app.container = container app.add_routes([ web.get('/', container.index_view.as_view()),