Skip to content

Commit 9715f56

Browse files
committed
Remove unnecessary semicolon in hello_world.py
1 parent d428949 commit 9715f56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples-v2/openai_agents/basic/hello_world.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def main():
1010
)
1111

1212
result = Runner.run_sync(agent, "Tell me about recursion in programming.")
13-
return result.final_output;
13+
return result.final_output
1414
# Function calls itself,
1515
# Looping in smaller pieces,
1616
# Endless by design.

0 commit comments

Comments
 (0)