mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-11 17:10:57 +03:00
Remove type hints
This commit is contained in:
parent
4747660d9f
commit
0152fa2152
|
@ -58,7 +58,7 @@ class ApplicationTests(AioHTTPTestCase):
|
||||||
Override the get_app method to return your application.
|
Override the get_app method to return your application.
|
||||||
"""
|
"""
|
||||||
container = ApplicationContainer()
|
container = ApplicationContainer()
|
||||||
app: web.Application = container.app()
|
app = container.app()
|
||||||
app.container = container
|
app.container = container
|
||||||
app.add_routes([
|
app.add_routes([
|
||||||
web.get('/', container.index_view.as_view()),
|
web.get('/', container.index_view.as_view()),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user