(self, text: str)
| 656 | return True |
| 657 | |
| 658 | def input_text(self, text: str) -> bool: |
| 659 | print(f" on MyController.input_text: {text}") |
| 660 | self.count += 1 |
| 661 | return True |
| 662 | |
| 663 | def key_down(self, keycode: int) -> bool: |
| 664 | print(f" on MyController.key_down: {keycode}") |
nothing calls this directly
no outgoing calls
no test coverage detected