This commit is contained in:
Joao Moura
2026-02-16 13:12:27 -08:00
parent 57dad2f5f5
commit 8ba416a16e

View File

@@ -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