mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 10:48:32 +00:00
Fix Ruff pre-commit hook errors (#3706)
This commit is contained in:
parent
7da06b9741
commit
7f3b748401
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue