File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -161,15 +161,17 @@ async def validate_expected_success() -> None:
161161
162162 assert ARGS .type_checker == "mypy"
163163
164- recent_mypy_exes = await asyncio .gather (* [
165- setup_mypy (
166- ARGS .base_dir / ("mypy_" + recent_mypy ),
167- recent_mypy ,
168- repo = ARGS .repo ,
169- mypyc_compile_level = ARGS .mypyc_compile_level ,
170- )
171- for recent_mypy in RECENT_MYPYS
172- ])
164+ recent_mypy_exes = await asyncio .gather (
165+ * [
166+ setup_mypy (
167+ ARGS .base_dir / ("mypy_" + recent_mypy ),
168+ recent_mypy ,
169+ repo = ARGS .repo ,
170+ mypyc_compile_level = ARGS .mypyc_compile_level ,
171+ )
172+ for recent_mypy in RECENT_MYPYS
173+ ]
174+ )
173175
174176 async def inner (project : Project ) -> str | None :
175177 await project .setup ()
Original file line number Diff line number Diff line change 11[tool .black ]
22line-length = 100
3- # Necessary for string wrapping. Undo in 2024.
4- preview = true
53
64[tool .isort ]
75profile = " black"
You can’t perform that action at this time.
0 commit comments