Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--grid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grid.py b/grid.py
index 624a631..7999a22 100644
--- a/grid.py
+++ b/grid.py
@@ -117,7 +117,7 @@ class Grid:
''' Hide all of the cards on the grid. '''
for i in range(ROW * COL):
if self.grid[i] is not None:
- self.grid[i].hide_card()
+ self.grid[i].hide()
def show(self):
''' Restore all card on the grid to their x,y positions. '''