Skip to content

Commit 66bba9c

Browse files
committed
Merge branch 'mr/ferrara/prepare-bump-black-flake8-mypy' into 'master'
Fix mypy error to prepare bump to 1.13.0 See merge request it/e3-core!86
2 parents 95af7d8 + 80dcade commit 66bba9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/e3/os/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ def handler(signum: int, frame: Any) -> None:
759759

760760
# Wait for a sigchld signal. Note that select might
761761
# be interrupted by signals thus the loop
762-
select_args = [[fd_r], [], []]
762+
select_args: list[list[int] | float] = [[fd_r], [], []]
763763
if timeout != 0:
764764
select_args.append(remain)
765765

0 commit comments

Comments
 (0)