Skip to content

Commit 816ac17

Browse files
committed
remove unused func
1 parent aadbf3d commit 816ac17

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

minesweeper.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,6 @@ def getNeighbors(self, x, y):
161161
pass
162162
return neighbors
163163

164-
def isMineAt(self, x, y):
165-
try:
166-
return self.tiles[x][y]["isMine"]
167-
except KeyError:
168-
pass
169-
return False
170-
171164
def onClickWrapper(self, x, y):
172165
return lambda Button: self.onClick(self.tiles[x][y])
173166

0 commit comments

Comments
 (0)