()
| 292 | cmd = block.input.get("command", block.name) |
| 293 | |
| 294 | def worker(): |
| 295 | result = execute_tool(block) |
| 296 | with background_lock: |
| 297 | background_tasks[bg_id]["status"] = "completed" |
| 298 | background_results[bg_id] = result |
| 299 | |
| 300 | with background_lock: |
| 301 | background_tasks[bg_id] = { |
nothing calls this directly
no test coverage detected