Skip to content

Commit

Permalink
Silence mypy error in AccessLogger.log (aio-libs#3927)
Browse files Browse the repository at this point in the history
Not sure how to fix this properly, the logic is hard to follow
  • Loading branch information
AMDmi3 committed Aug 13, 2019
1 parent a5e99e0 commit f5d0a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/web_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def log(self,
extra[key] = value
else:
k1, k2 = key
dct = extra.get(k1, {})
dct = extra.get(k1, {}) # type: ignore
dct[k2] = value # type: ignore
extra[k1] = dct # type: ignore

Expand Down

0 comments on commit f5d0a52

Please sign in to comment.