Skip to content

Commit

Permalink
Fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Jan 31, 2024
1 parent dd410f9 commit e66da47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 11 additions & 9 deletions mypy_primer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,17 @@ async def validate_expected_success() -> None:

assert ARGS.type_checker == "mypy"

recent_mypy_exes = await asyncio.gather(*[
setup_mypy(
ARGS.base_dir / ("mypy_" + recent_mypy),
recent_mypy,
repo=ARGS.repo,
mypyc_compile_level=ARGS.mypyc_compile_level,
)
for recent_mypy in RECENT_MYPYS
])
recent_mypy_exes = await asyncio.gather(
*[
setup_mypy(
ARGS.base_dir / ("mypy_" + recent_mypy),
recent_mypy,
repo=ARGS.repo,
mypyc_compile_level=ARGS.mypyc_compile_level,
)
for recent_mypy in RECENT_MYPYS
]
)

async def inner(project: Project) -> str | None:
await project.setup()
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[tool.black]
line-length = 100
# Necessary for string wrapping. Undo in 2024.
preview = true

[tool.isort]
profile = "black"
Expand Down

0 comments on commit e66da47

Please sign in to comment.