(self, keycode: int)
| 661 | return True |
| 662 | |
| 663 | def key_down(self, keycode: int) -> bool: |
| 664 | print(f" on MyController.key_down: {keycode}") |
| 665 | self.count += 1 |
| 666 | return True |
| 667 | |
| 668 | def key_up(self, keycode: int) -> bool: |
| 669 | print(f" on MyController.key_up: {keycode}") |
nothing calls this directly
no outgoing calls
no test coverage detected