()
| 150 | start_game() |
| 151 | snake.left() |
| 152 | def handle_snake_right(): |
| 153 | if game_state in ["start", "playing"]: |
| 154 | start_game() |
| 155 | snake.right() |
| 156 | |
| 157 | # --- KEY & MOUSE BINDINGS --- |
| 158 | screen.listen() |
nothing calls this directly
no test coverage detected