Skip to content

Commit

Permalink
Silence mypy error in AccessLogger.log (#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 1, 2019
1 parent ed94bc8 commit 585f4af
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 585f4af

Please sign in to comment.