[pre-commit.ci] pre-commit autoupdate (#284)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
6672f9809b
commit
efd34ed63b
|
@ -19,12 +19,12 @@ repos:
|
|||
- id: pyproject-fmt
|
||||
additional_dependencies: ["tox>=4.8"]
|
||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||
rev: "v3.0.2"
|
||||
rev: "v3.0.3"
|
||||
hooks:
|
||||
- id: prettier
|
||||
args: ["--print-width=120", "--prose-wrap=always"]
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: "v0.0.286"
|
||||
rev: "v0.0.287"
|
||||
hooks:
|
||||
- id: ruff
|
||||
args: [--fix, --exit-non-zero-on-fix]
|
||||
|
|
|
@ -44,7 +44,7 @@ def conflicting_deps(tree: PackageDAG) -> dict[DistPackage, list[ReqPackage]]:
|
|||
for package, requires in tree.items():
|
||||
for req in requires:
|
||||
if req.is_conflicting():
|
||||
conflicting[package].append(req) # noqa: PERF401
|
||||
conflicting[package].append(req)
|
||||
return conflicting
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue