Skip to content

Commit

Permalink
Merge branch 'mr/ferrara/prepare-bump-black-flake8-mypy' into 'master'
Browse files Browse the repository at this point in the history
Fix mypy error to prepare bump to 1.13.0

See merge request it/e3-core!86
  • Loading branch information
elsaferrara committed Jan 6, 2025
2 parents 95af7d8 + 80dcade commit 66bba9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/e3/os/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 66bba9c

Please sign in to comment.