opens nearest cells that are not near a mine
(self, cell)
| 206 | return matrix |
| 207 | |
| 208 | def no_mine(self, cell): |
| 209 | """opens nearest cells that are not near a mine""" |
| 210 | if cell.nearest_mine > 0: |
| 211 | return |
| 212 | self.fill_void_cells(cell) |
| 213 | |
| 214 | def check_if_win(self): |
| 215 | """Here are counted the flags. Is checked if the user win.""" |
no test coverage detected