Skip to content

Commit 2ffa865

Browse files
authored
ci: Fix lint step (#5418)
Not entirely sure why this is surfacing in CI and not locally, but fixing it.
1 parent d2b7d5e commit 2ffa865

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,9 @@ def raise_exception(self) -> None:
12951295
),
12961296
# If sampler returns invalid value, we should still send the event
12971297
IssuesSamplerTestConfig(
1298-
sampler_function=lambda *_: "This is an invalid return value for the sampler",
1298+
sampler_function=lambda *_: (
1299+
"This is an invalid return value for the sampler"
1300+
),
12991301
expected_events=1,
13001302
),
13011303
),

0 commit comments

Comments
 (0)