Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/hand.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-03-25 23:46:39 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-03-25 23:46:39 (GMT)
commitae02ebe237ebdacabca917c6148375f2ed057985 (patch)
tree921405969c7063ca2e50387d8c0a2f2be4a9111c /hand.py
parent57d1e394a7a8ef7cf4e7b49a5190968f89effe50 (diff)
pep8 cleanup
Diffstat (limited to 'hand.py')
-rw-r--r--hand.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/hand.py b/hand.py
index bfe63f3..af5f3bc 100644
--- a/hand.py
+++ b/hand.py
@@ -23,14 +23,14 @@ class Hand:
''' Class for managing COL matrix of cards '''
def __init__(self, card_width, card_height, remote=False):
- # the tiles in your hand
+ # The tiles in your hand
self.hand = []
self.remote = remote # Does this hand belong to someone remote?
for i in range(COL):
self.hand.append(None)
- # card spacing
+ # Card spacing
self.xinc = int(card_width)
if self.remote:
self.left = -self.xinc
@@ -50,8 +50,6 @@ class Hand:
if self.hand[i] is not None:
self.hand[i].spr.move(self.hand_to_xy(i))
self.hand[i].spr.set_layer(CARDS)
- else:
- print 'No more cards in the deck.'
return True
def find_empty_slot(self):
@@ -71,7 +69,7 @@ class Hand:
hand = []
else:
hand = [buddy]
- for i in range( COL):
+ for i in range(COL):
if self.hand[i] is not None:
hand.append(self.hand[i].number)
else: