(event)
| 37 | c.tongue_out = False |
| 38 | |
| 39 | def cheeky(event): |
| 40 | toggle_tongue() |
| 41 | toggle_pupils() |
| 42 | hide_happy(event) |
| 43 | win.after(1000,toggle_tongue) |
| 44 | win.after(1000,toggle_pupils) |
| 45 | return |
| 46 | |
| 47 | def show_happy(event): |
| 48 | if(20 <= event.x and event.x < 350) and (20 <= event.y and event.y <= 350): |
nothing calls this directly
no test coverage detected