chore: ruff lint

This commit is contained in:
Richard Tang
2026-04-03 20:31:14 -07:00
parent 294df7f066
commit ed8d417bef
106 changed files with 1149 additions and 828 deletions
+5 -1
View File
@@ -256,7 +256,11 @@ class SessionState(BaseModel):
error=result.error,
output=result.output,
),
data_buffer=result.session_state.get("data_buffer", result.session_state.get("memory", {})) if result.session_state else {},
data_buffer=result.session_state.get(
"data_buffer", result.session_state.get("memory", {})
)
if result.session_state
else {},
input_data=input_data or {},
)