(self, y, x)
| 126 | self.rows.append([EMPTY] * self.width) |
| 127 | |
| 128 | def get(self, y, x): |
| 129 | return self.rows[y % self.height][x % self.width] |
| 130 | |
| 131 | def set(self, y, x, state): |
| 132 | self.rows[y % self.height][x % self.width] = state |
no outgoing calls
no test coverage detected