[PR #290] [MERGED] docs: fix missing imports, typos and syntax errors in workflow docs #295

Closed
opened 2026-02-16 02:17:09 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/workflows-py/pull/290
Author: @adrianlyjak
Created: 1/19/2026
Status: Merged
Merged: 1/19/2026
Merged by: @adrianlyjak

Base: mainHead: claude/slack-audit-workflow-docs-2SfIo


📝 Commits (1)

  • d64df86 docs: fix missing imports, typos and syntax errors in workflow docs

📊 Changes

10 files changed (+33 additions, -15 deletions)

View changed files

📝 docs/src/content/docs/llamaagents/workflows/concurrent_execution.md (+2 -0)
📝 docs/src/content/docs/llamaagents/workflows/customizing_entry_exit_points.md (+2 -2)
📝 docs/src/content/docs/llamaagents/workflows/deployment.md (+5 -4)
📝 docs/src/content/docs/llamaagents/workflows/drawing.md (+1 -0)
📝 docs/src/content/docs/llamaagents/workflows/durable_workflows.md (+4 -4)
📝 docs/src/content/docs/llamaagents/workflows/human_in_the_loop.md (+4 -1)
📝 docs/src/content/docs/llamaagents/workflows/managing_state.md (+3 -3)
📝 docs/src/content/docs/llamaagents/workflows/resources.md (+4 -1)
📝 docs/src/content/docs/llamaagents/workflows/retry_steps.md (+3 -0)
📝 docs/src/content/docs/llamaagents/workflows/unbound_functions.md (+5 -0)

📄 Description

  • managing_state.md: Add missing Context import, fix state variable name typo (state -> ctx_state), fix workflow variable name (w -> workflow)
  • concurrent_execution.md: Add missing random import in two code examples
  • resources.md: Add missing imports for Workflow, step, Event, StartEvent, StopEvent
  • human_in_the_loop.md: Add missing imports for Workflow, step, StartEvent, StopEvent and Context
  • durable_workflows.md: Fix sync function to async (def -> async def) in two examples that use await, fix variable typo (converted_id -> converted_ids)
  • customizing_entry_exit_points.md: Fix missing ev. prefix on a_string_field, add missing keyword argument (critique=) in MyStopEvent constructor
  • retry_steps.md: Add missing imports for Workflow, Context, step, StartEvent, StopEvent and Optional
  • unbound_functions.md: Add missing imports for Workflow, step, StartEvent, StopEvent
  • drawing.md: Add missing WorkflowServer import
  • deployment.md: Add missing asyncio import, fix missing colon after async def main(), fix typo in import path (workflow.client -> workflows.client), fix missing colon in if statement

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/workflows-py/pull/290 **Author:** [@adrianlyjak](https://github.com/adrianlyjak) **Created:** 1/19/2026 **Status:** ✅ Merged **Merged:** 1/19/2026 **Merged by:** [@adrianlyjak](https://github.com/adrianlyjak) **Base:** `main` ← **Head:** `claude/slack-audit-workflow-docs-2SfIo` --- ### 📝 Commits (1) - [`d64df86`](https://github.com/run-llama/workflows-py/commit/d64df868c4cb173a44f24f960909c8a76a3cec17) docs: fix missing imports, typos and syntax errors in workflow docs ### 📊 Changes **10 files changed** (+33 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `docs/src/content/docs/llamaagents/workflows/concurrent_execution.md` (+2 -0) 📝 `docs/src/content/docs/llamaagents/workflows/customizing_entry_exit_points.md` (+2 -2) 📝 `docs/src/content/docs/llamaagents/workflows/deployment.md` (+5 -4) 📝 `docs/src/content/docs/llamaagents/workflows/drawing.md` (+1 -0) 📝 `docs/src/content/docs/llamaagents/workflows/durable_workflows.md` (+4 -4) 📝 `docs/src/content/docs/llamaagents/workflows/human_in_the_loop.md` (+4 -1) 📝 `docs/src/content/docs/llamaagents/workflows/managing_state.md` (+3 -3) 📝 `docs/src/content/docs/llamaagents/workflows/resources.md` (+4 -1) 📝 `docs/src/content/docs/llamaagents/workflows/retry_steps.md` (+3 -0) 📝 `docs/src/content/docs/llamaagents/workflows/unbound_functions.md` (+5 -0) </details> ### 📄 Description - managing_state.md: Add missing Context import, fix state variable name typo (state -> ctx_state), fix workflow variable name (w -> workflow) - concurrent_execution.md: Add missing random import in two code examples - resources.md: Add missing imports for Workflow, step, Event, StartEvent, StopEvent - human_in_the_loop.md: Add missing imports for Workflow, step, StartEvent, StopEvent and Context - durable_workflows.md: Fix sync function to async (def -> async def) in two examples that use await, fix variable typo (converted_id -> converted_ids) - customizing_entry_exit_points.md: Fix missing ev. prefix on a_string_field, add missing keyword argument (critique=) in MyStopEvent constructor - retry_steps.md: Add missing imports for Workflow, Context, step, StartEvent, StopEvent and Optional - unbound_functions.md: Add missing imports for Workflow, step, StartEvent, StopEvent - drawing.md: Add missing WorkflowServer import - deployment.md: Add missing asyncio import, fix missing colon after async def main(), fix typo in import path (workflow.client -> workflows.client), fix missing colon in if statement --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 02:17:09 -05:00
yindo closed this issue 2026-02-16 02:17:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/workflows-py#295