Handle interaction request (user choice needed).
(self, action: dict, width: int, height: int)
| 264 | return ActionResult(True, False) |
| 265 | |
| 266 | def _handle_interact(self, action: dict, width: int, height: int) -> ActionResult: |
| 267 | """Handle interaction request (user choice needed).""" |
| 268 | # This action signals that user input is needed |
| 269 | return ActionResult(True, False, message="User interaction required") |
| 270 | |
| 271 | @staticmethod |
| 272 | def _default_confirmation(message: str) -> bool: |
nothing calls this directly
no test coverage detected