Skip to content

Commit 8822464

Browse files
committed
fix format
Signed-off-by: christian.lutnik <[email protected]>
1 parent b2ad90c commit 8822464

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

providers/openfeature-provider-flagd/tests/e2e/step/event_steps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def handler(event):
4444

4545

4646
def assert_handlers(handles, event_type: str, max_wait: int = 2):
47-
poll_interval = .2
47+
poll_interval = 0.2
4848
while max_wait > 0:
4949
found = any(h["type"] == event_type for h in handles)
5050
if not found:

providers/openfeature-provider-flagd/tests/e2e/step/provider_steps.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ def flagd_restart(
130130
resolver_type: ResolverType,
131131
):
132132
requests.post(
133-
f"{container.get_launchpad_url()}/restart?seconds={seconds}", timeout=float(seconds) + 2
133+
f"{container.get_launchpad_url()}/restart?seconds={seconds}",
134+
timeout=float(seconds) + 2,
134135
)
135136
pass
136137

0 commit comments

Comments
 (0)