From 8ba416a16e362b5d1c5e7cb63fef157bdb2b73b8 Mon Sep 17 00:00:00 2001 From: Joao Moura Date: Mon, 16 Feb 2026 13:12:27 -0800 Subject: [PATCH] LINTER --- lib/crewai/src/crewai/cli/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/crewai/src/crewai/cli/utils.py b/lib/crewai/src/crewai/cli/utils.py index 566d47e25..6ee181ea1 100644 --- a/lib/crewai/src/crewai/cli/utils.py +++ b/lib/crewai/src/crewai/cli/utils.py @@ -468,13 +468,13 @@ def get_flows(flow_path: str = "main.py") -> list[Flow]: module_attr ): flow_instances.append(flow_instance) - except Exception: + except Exception: # noqa: S112 continue if flow_instances: break - except Exception: + except Exception: # noqa: S112 continue except (ImportError, AttributeError): @@ -483,7 +483,7 @@ def get_flows(flow_path: str = "main.py") -> list[Flow]: if flow_instances: break - except Exception: + except Exception: # noqa: S110 pass return flow_instances