From 85578b8d307453aea7fbafeb80a82bc54c08efe4 Mon Sep 17 00:00:00 2001 From: Saurabh Misra Date: Fri, 14 Feb 2025 17:05:52 -0800 Subject: [PATCH] Update src/crewai/flow/utils.py --- src/crewai/flow/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/flow/utils.py b/src/crewai/flow/utils.py index 34abd5498..db9a5db03 100644 --- a/src/crewai/flow/utils.py +++ b/src/crewai/flow/utils.py @@ -109,7 +109,7 @@ def calculate_node_levels(flow: Any) -> Dict[str, int]: ------- Dict[str, int] Dictionary mapping method names to their hierarchical levels. - Notes + Notes ----- - Start methods are assigned level 0 - Each subsequent connected node is assigned level = parent_level + 1