another little fix

This commit is contained in:
Jonas Weinz 2021-06-24 17:15:56 +02:00
parent 83457db0ea
commit 0122ca2e4f

View File

@ -242,6 +242,7 @@ class Grid(object):
'y': ly,
'revealed': self._grid[ly][lx].get_content()
})
self._grid[ly][lx].reveal()
return grid_update + solution_updates
def user_input(self, x: int, y: int, letter: str) -> list: