Skip to content

Commit 7768ff5

Browse files
authored
Added missing return type for _pong_not_received_coro()
to make mypy happy
1 parent 73ecb05 commit 7768ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aiohttp/web_ws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def _pong_not_received(self) -> None:
197197
)
198198
)
199199

200-
async def _pong_not_received_coro(self):
200+
async def _pong_not_received_coro(self) -> None:
201201
"""Coroutine to check for pending PONG when no PONG was received after self._pong_heartbeat seconds"""
202202
reader = self._reader
203203
assert reader is not None

0 commit comments

Comments
 (0)