From 80dcade241901e12d7eaadf9431956f85ebce9fd Mon Sep 17 00:00:00 2001 From: Elsa Ferrara Date: Mon, 23 Dec 2024 12:52:57 +0100 Subject: [PATCH] Fix mypy error to prepare bump to 1.13.0 Error raised locally while testing `tox -e check` with 1.13.0 mypy version. part of it/org/software-supply-chain/production-pipeline/issues#80 --- src/e3/os/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/e3/os/process.py b/src/e3/os/process.py index 63523149..21bf02d4 100644 --- a/src/e3/os/process.py +++ b/src/e3/os/process.py @@ -759,7 +759,7 @@ def handler(signum: int, frame: Any) -> None: # Wait for a sigchld signal. Note that select might # be interrupted by signals thus the loop - select_args = [[fd_r], [], []] + select_args: list[list[int] | float] = [[fd_r], [], []] if timeout != 0: select_args.append(remain)