Fix Ruff pre-commit hook errors (#3706)

This commit is contained in:
Jonathan Plasse 2023-03-24 03:52:24 +01:00 committed by GitHub
parent 7da06b9741
commit 7f3b748401
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -178,7 +178,7 @@ async def main(*, ruff1: Path, ruff2: Path) -> None:
return_exceptions=True,
)
diffs = {name: result for name, result in zip(REPOSITORIES, results, strict=True)}
diffs = dict(zip(REPOSITORIES, results, strict=True))
total_removed = total_added = 0
errors = 0