()
| 142 | start_game() |
| 143 | snake.up() |
| 144 | def handle_snake_down(): |
| 145 | if game_state in ["start", "playing"]: |
| 146 | start_game() |
| 147 | snake.down() |
| 148 | def handle_snake_left(): |
| 149 | if game_state in ["start", "playing"]: |
| 150 | start_game() |
nothing calls this directly
no test coverage detected