diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-02-05 19:12:51 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-02-05 19:12:51 +0200 |
commit | 568897dcb020d3b0a03f0bbef03d2714ea25e609 (patch) | |
tree | dc253e1c2ae192a11bd2f3d6162cc0108b396fbf /board | |
parent | 5a37bf84dd851cda76d93e353586f0d786c4c9c6 (diff) |
Addin käyttöohje.
Diffstat (limited to 'board')
-rw-r--r-- | board/board.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/board.py b/board/board.py index 59135d7..118a771 100644 --- a/board/board.py +++ b/board/board.py @@ -24,7 +24,7 @@ class Board(): if width and width in range(2,51): self.__width = width if height and height in range(2,51): - self.__height = width + self.__height = height if mines: self.__mines = mines |