Skip to content

Commit be64e50

Browse files
renovate[bot]JP-Ellis
authored andcommitted
chore(deps): update ruff to v0.5.4
Signed-off-by: JP-Ellis <[email protected]>
1 parent 5eb8489 commit be64e50

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
stages: [pre-push]
4343

4444
- repo: https://github.com/astral-sh/ruff-pre-commit
45-
rev: v0.5.2
45+
rev: v0.5.4
4646
hooks:
4747
- id: ruff
4848
# Exclude python files in pact/** and tests/**, except for the

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ devel-test = [
8989
"pytest-cov ~=5.0",
9090
"testcontainers ~=3.0",
9191
]
92-
devel = ["pact-python[devel-types,devel-docs,devel-test]", "ruff==0.5.2"]
92+
devel = ["pact-python[devel-types,devel-docs,devel-test]", "ruff==0.5.4"]
9393

9494
################################################################################
9595
## Hatch Build Configuration

src/pact/v3/interaction/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def with_metadata(
375375
)
376376
return self
377377

378-
def with_multipart_file( # noqa: PLR0913
378+
def with_multipart_file(
379379
self,
380380
part_name: str,
381381
path: Path | None,

src/pact/v3/verifier.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ def broker_source(
693693
selector: Literal[True],
694694
) -> BrokerSelectorBuilder: ...
695695

696-
def broker_source( # noqa: PLR0913
696+
def broker_source(
697697
self,
698698
url: str | URL,
699699
*,
@@ -804,7 +804,7 @@ class BrokerSelectorBuilder:
804804
This class encapsulates the logic for selecting Pacts from a Pact broker.
805805
"""
806806

807-
def __init__( # noqa: PLR0913
807+
def __init__(
808808
self,
809809
verifier: Verifier,
810810
url: str,

tests/v3/compatibility_suite/util/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ class PactBroker:
354354
Interface to the Pact Broker.
355355
"""
356356

357-
def __init__( # noqa: PLR0913
357+
def __init__(
358358
self,
359359
broker_url: URL,
360360
*,

0 commit comments

Comments
 (0)