()
| 146 | start_game() |
| 147 | snake.down() |
| 148 | def handle_snake_left(): |
| 149 | if game_state in ["start", "playing"]: |
| 150 | start_game() |
| 151 | snake.left() |
| 152 | def handle_snake_right(): |
| 153 | if game_state in ["start", "playing"]: |
| 154 | start_game() |
nothing calls this directly
no test coverage detected