From c467c96e9fce76fe1cee095d15cef0d70729391b Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 11:00:26 +0000 Subject: [PATCH] fix: Remove whitespace from blank lines in example file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix W293 lint errors by removing trailing whitespace from blank lines - Ensures compliance with Ruff formatting standards Co-Authored-By: João --- examples/dynamic_task_ordering_example.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/dynamic_task_ordering_example.py b/examples/dynamic_task_ordering_example.py index 263b43c25..8abe4ce62 100644 --- a/examples/dynamic_task_ordering_example.py +++ b/examples/dynamic_task_ordering_example.py @@ -12,12 +12,12 @@ from crewai.process import Process def priority_based_ordering(all_tasks, completed_outputs, current_index): """ Order tasks by priority (lower number = higher priority). - + Args: all_tasks: List of all tasks in the crew completed_outputs: List of TaskOutput objects for completed tasks current_index: Current task index (for default ordering) - + Returns: int: Index of next task to execute Task: Task object to execute next @@ -41,7 +41,7 @@ def priority_based_ordering(all_tasks, completed_outputs, current_index): def conditional_ordering(all_tasks, completed_outputs, current_index): """ Order tasks based on previous task outputs. - + This example shows how to make task ordering decisions based on the results of previously completed tasks. """