Skip to content

Commit 7133493

Browse files
committed
chore: ruff check tests
Signed-off-by: Yves Bastide <yves@botify.com>
1 parent ef5fee1 commit 7133493

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ def get_uuid(unused=None):
3434

3535
@activity.with_attributes(task_list="quickstart", version="example")
3636
def increment(x):
37-
print("increment: %d" % x)
37+
print(f"increment: {x:d}")
3838
return x + 1
3939

4040

4141
@activity.with_attributes(task_list="quickstart", version="example")
4242
def double(y):
43-
print("double: %d" % y)
43+
print(f"double: {y:d}")
4444
return y * 2
4545

4646

0 commit comments

Comments
 (0)