()
| 349 | cmd = block.input.get("command", block.name) |
| 350 | |
| 351 | def worker(): |
| 352 | result = execute_tool(block) |
| 353 | with background_lock: |
| 354 | background_tasks[bg_id]["status"] = "completed" |
| 355 | background_results[bg_id] = result |
| 356 | |
| 357 | with background_lock: |
| 358 | background_tasks[bg_id] = { |
nothing calls this directly
no test coverage detected