Skip to content

Commit a7377b4

Browse files
GWealecopybara-github
authored andcommitted
docs: remove trailing whitespace in dynamic_nodes guide
Unblocks the pre-commit --all-files check; mdformat rewrites this file and fails on every PR until the whitespace is gone. Co-authored-by: George Weale <gweale@google.com> PiperOrigin-RevId: 934144935
1 parent f4c7e4c commit a7377b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • docs/guides/workflow/dynamic_nodes

docs/guides/workflow/dynamic_nodes/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ generate_headline = Agent(
3131
async def orchestrate(ctx: Context, node_input: str) -> str:
3232
# Dynamically execute the child agent and await its output
3333
headline = await ctx.run_node(generate_headline, node_input=node_input)
34-
34+
3535
yield Event(output=headline)
3636

3737
# Build the workflow
@@ -175,7 +175,7 @@ async def parallel_orchestrator(ctx: Context, node_input: list[str]):
175175
use_sub_branch=True, # Critical for parallel isolation
176176
)
177177
)
178-
178+
179179
# Await all tasks concurrently
180180
results = await asyncio.gather(*tasks)
181181
yield Event(output=results)

0 commit comments

Comments
 (0)