Skip to content

Commit

Permalink
Use generic type for response
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrasband committed Jun 23, 2019
1 parent 2cf4be7 commit fdb37a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyslackersweb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
)


async def index(request: web.Request) -> web.HTTPFound:
async def index(request: web.Request) -> web.Response:
location = request.app["website_app"].router["index"].url_for()
return web.HTTPFound(location=location)

Expand Down

0 comments on commit fdb37a0

Please sign in to comment.