()
| 138 | |
| 139 | # --- KEYBOARD HANDLERS --- |
| 140 | def handle_snake_up(): |
| 141 | if game_state in ["start", "playing"]: |
| 142 | start_game() |
| 143 | snake.up() |
| 144 | def handle_snake_down(): |
| 145 | if game_state in ["start", "playing"]: |
| 146 | start_game() |
nothing calls this directly
no test coverage detected