Skip to content

Commit 00b02a6

Browse files
committed
Flake8
1 parent 24e60bc commit 00b02a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

async_timeout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def _do_exit(self, exc_type: Type[BaseException]) -> None:
198198
return None
199199

200200
def _on_timeout(self, task: "asyncio.Task[None]") -> None:
201-
if task._fut_waiter and task._fut_waiter.cancelled(): # type: ignore[attr-defined]
201+
if task._fut_waiter and task._fut_waiter.cancelled(): # type: ignore[attr-defined] # noqa: E501
202202
return
203203
task.cancel()
204204
self._state = _State.TIMEOUT

0 commit comments

Comments
 (0)