From 7bcb84a5686b82b07328aec1f64b30b5a33b03a1 Mon Sep 17 00:00:00 2001 From: Saurabh Misra Date: Fri, 14 Feb 2025 17:33:24 -0800 Subject: [PATCH] Update src/crewai/flow/utils.py --- src/crewai/flow/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/crewai/flow/utils.py b/src/crewai/flow/utils.py index c5a2a3f90..fbdf5a8c6 100644 --- a/src/crewai/flow/utils.py +++ b/src/crewai/flow/utils.py @@ -98,7 +98,6 @@ def calculate_node_levels(flow: Any) -> Dict[str, int]: """ Calculate the hierarchical level of each node in the flow. - Performs a breadth-first traversal of the flow graph to assign levels to nodes, starting with start methods at level 0.