File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -349,9 +349,7 @@ def run_test(
349
349
namespace = dict (locals ())
350
350
tracer .runctx (cmd , globals = globals (), locals = namespace )
351
351
result = namespace ['result' ]
352
- # Mypy doesn't know about this attribute yet,
353
- # but it will do soon: https://github.com/python/typeshed/pull/11091
354
- result .covered_lines = list (tracer .counts ) # type: ignore[attr-defined]
352
+ result .covered_lines = list (tracer .counts )
355
353
else :
356
354
result = run_single_test (test_name , runtests )
357
355
Original file line number Diff line number Diff line change 1
1
# Requirements file for external linters and checks we run on
2
2
# Tools/clinic, Tools/cases_generator/, and Tools/peg_generator/ in CI
3
- mypy == 1.8 .0
3
+ mypy == 1.9 .0
4
4
5
5
# needed for peg_generator:
6
6
types-psutil == 5.9.5.20240316
You can’t perform that action at this time.
0 commit comments