Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e66da47

Browse files
committed
Fix black
1 parent dd410f9 commit e66da47

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

mypy_primer/main.py

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff 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()

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
[tool.black]
22
line-length = 100
3-
# Necessary for string wrapping. Undo in 2024.
4-
preview = true
53

64
[tool.isort]
75
profile = "black"

0 commit comments

Comments
 (0)