Skip to content

Commit 01517b2

Browse files
authored
Merge branch 'main' into provider/flipt-issue89
2 parents 3106d83 + d3e3b94 commit 01517b2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/lint-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727

28-
- uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2
28+
- uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2
2929
# When the previous steps fails, the workflow would stop. By adding this
3030
# condition you can continue the execution with the populated error message.
3131
if: always() && (steps.lint_pr_title.outputs.error_message != null)
@@ -44,7 +44,7 @@ jobs:
4444
4545
# Delete a previous comment when the issue has been resolved
4646
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
47-
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2
47+
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2
4848
with:
4949
header: pr-title-lint-error
5050
delete: true

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
default_stages: [commit]
22
repos:
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: v0.8.6
4+
rev: v0.9.2
55
hooks:
66
- id: ruff
77
args: [--fix]

providers/openfeature-provider-flagd/tests/e2e/steps.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -594,9 +594,9 @@ def assert_handlers(
594594

595595
logging.info(f"asserting num({event_type}) >= {num_events}: {handles}")
596596
actual_num_events = sum([h["type"] == event_type for h in handles])
597-
assert (
598-
num_events <= actual_num_events
599-
), f"Expected {num_events} but got {actual_num_events}: {handles}"
597+
assert num_events <= actual_num_events, (
598+
f"Expected {num_events} but got {actual_num_events}: {handles}"
599+
)
600600

601601

602602
@then(

0 commit comments

Comments
 (0)