mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-25 16:09:31 +08:00
Remove unused local symbols (#1946)
remove unused local symbols in inspection Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
This commit is contained in:
@ -159,7 +159,6 @@ async def build_vertex(
|
||||
)
|
||||
else:
|
||||
graph = cache.get("result")
|
||||
ResultDataResponse(results={})
|
||||
vertex = graph.get_vertex(vertex_id)
|
||||
try:
|
||||
lock = chat_service._cache_locks[flow_id_str]
|
||||
|
||||
@ -112,7 +112,6 @@ async def simplified_run_flow(
|
||||
|
||||
try:
|
||||
flow_id_str = str(flow_id)
|
||||
task_result: List[RunOutputs] = []
|
||||
artifacts = {}
|
||||
if input_request.session_id:
|
||||
session_data = await session_service.load_session(input_request.session_id, flow_id=flow_id_str)
|
||||
@ -240,7 +239,6 @@ async def experimental_run_flow(
|
||||
if outputs is None:
|
||||
outputs = []
|
||||
|
||||
task_result: List[RunOutputs] = []
|
||||
artifacts = {}
|
||||
if session_id:
|
||||
session_data = await session_service.load_session(session_id, flow_id=flow_id_str)
|
||||
|
||||
Reference in New Issue
Block a user