(self, input: CommandInput)
| 215 | |
| 216 | class Manager(CommandHandler): |
| 217 | async def handle_cli_submit(self, input: CommandInput): |
| 218 | queue.put(input.cwd) |
| 219 | return await super().handle_cli_submit(input) |
| 220 | |
| 221 | with MockJobManager(hq_env, Manager(flavor.create_adapter())): |
| 222 | start_server_with_quick_refresh(hq_env) |
nothing calls this directly
no test coverage detected