File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ def do(self) -> None:
437437 import _sitebuiltins
438438
439439 with self .reader .suspend ():
440- self .reader .msg = _sitebuiltins ._Helper ()() # type: ignore[assignment, call-arg ]
440+ self .reader .msg = _sitebuiltins ._Helper ()() # type: ignore[assignment]
441441
442442
443443class invalid_key (Command ):
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def setup_process() -> None:
4242 faulthandler .enable (all_threads = True , file = stderr_fd )
4343
4444 # Display the Python traceback on SIGALRM or SIGUSR1 signal
45- signals = []
45+ signals : list [ signal . Signals ] = []
4646 if hasattr (signal , 'SIGALRM' ):
4747 signals .append (signal .SIGALRM )
4848 if hasattr (signal , 'SIGUSR1' ):
Original file line number Diff line number Diff line change 11# Requirements file for external linters and checks we run on
22# Tools/clinic, Tools/cases_generator/, and Tools/peg_generator/ in CI
3- mypy == 1.13
3+ mypy == 1.15
44
55# needed for peg_generator:
66types-psutil == 5.9.5.20240423
You can’t perform that action at this time.
0 commit comments