(self, y, x, state)
| 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 |
| 133 | |
| 134 | def __str__(self): |
| 135 | output = "" |
no outgoing calls
no test coverage detected