Skip to content

Commit 3556389

Browse files
committed
Linting
1 parent 0f9b19a commit 3556389

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/entities/class_based_entity_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def counter_orchestrator(ctx: task.OrchestrationContext, _):
5252

5353

5454
def hello_orchestrator(ctx: task.OrchestrationContext, _):
55-
return f"Hello world!"
55+
return "Hello world!"
5656

5757

5858
# Use environment variables if provided, otherwise use default emulator values

examples/entities/function_based_entity_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def counter_orchestrator(ctx: task.OrchestrationContext, _):
4646

4747

4848
def hello_orchestrator(ctx: task.OrchestrationContext, _):
49-
return f"Hello world!"
49+
return "Hello world!"
5050

5151

5252
# Use environment variables if provided, otherwise use default emulator values

0 commit comments

Comments
 (0)