Skip to content

Commit

Permalink
Merge branch 'main' into ruff-0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielluiz authored Jan 14, 2025
2 parents d414eae + 0d1c291 commit 6ee5229
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def get_webhook_component_in_flow(flow_data: dict):
"""Get webhook component in flow data."""
if hasattr(flow_data, "nodes"):
if "nodes" in flow_data:
for node in flow_data.get("nodes", []):
if "Webhook" in node.get("id"):
return node
Expand Down
1 change: 1 addition & 0 deletions src/backend/base/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ maintainers = [
dependencies = [
"fastapi>=0.115.2,<1.0.0",
"httpx[http2]>=0.27,<1.0.0",
"aiofile>=3.9.0,<4.0.0",
"uvicorn>=0.30.0,<1.0.0",
"gunicorn>=22.0.0,<24.0.0",
"langchain~=0.3.10",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const usePatchUpdateFlow: useMutationFunctionType<
description: payload.description,
folder_id: payload.folder_id || null,
endpoint_name: payload.endpoint_name || null,
locked: payload.locked || null,
locked: payload.locked || false,
});

return response.data;
Expand Down
6 changes: 4 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6ee5229

Please # to comment.