(line)
| 97 | def remove_full_lines(): |
| 98 | global shaft, width, height |
| 99 | def line_full(line): |
| 100 | global width |
| 101 | for x in range(width): |
| 102 | if line[x] == empty: |
| 103 | return False |
| 104 | return True |
| 105 | |
| 106 | def remove_line(y): |
| 107 | global shaft, width |
no test coverage detected