Skip to content

Commit

Permalink
fix bad inlined-inlined-loop)
Browse files Browse the repository at this point in the history
  • Loading branch information
popravich committed Nov 27, 2017
1 parent 4fc8415 commit b072845
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aiohttp/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,9 @@ async def _handle(self, request):
("Handler {!r} should return response instance, "
"got {!r} [middlewares {!r}]").format(
match_info.handler, type(resp),
[middleware for middleware in app.middlewares
for app in match_info.apps])
[middleware
for app in match_info.apps
for middleware in app.middlewares])
return resp

def __call__(self):
Expand Down

0 comments on commit b072845

Please sign in to comment.