Remove type hints

This commit is contained in:
Roman Mogylatov 2020-07-27 23:01:31 -04:00
parent 4747660d9f
commit 0152fa2152

View File

@ -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()),