We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9e13f commit 29a439eCopy full SHA for 29a439e
aiohttp/web_ws.py
@@ -189,7 +189,9 @@ def _pong_not_received(self) -> None:
189
"""Callback for when no PONG was received after self._pong_heartbeat seconds"""
190
if self._req is not None and self._req.transport is not None:
191
loop = self._loop
192
- if loop is not None and not self._waiting: # If self._waiting is set we already are in the receive loop and would have read the PONG if one was there
+ if (
193
+ loop is not None and not self._waiting
194
+ ): # If self._waiting is set we already are in the receive loop and would have read the PONG if one was there
195
pong_not_received_task = loop.create_task(
196
self._pong_not_received_coro()
197
)
0 commit comments