()
| 305 | cmd = block.input.get("command", block.name) |
| 306 | |
| 307 | def worker(): |
| 308 | result = execute_tool(block) |
| 309 | with background_lock: |
| 310 | background_tasks[bg_id]["status"] = "completed" |
| 311 | background_results[bg_id] = result |
| 312 | |
| 313 | with background_lock: |
| 314 | background_tasks[bg_id] = { |
nothing calls this directly
no test coverage detected