Skip to content

Commit

Permalink
[NEWIMPORT] Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Worros authored and kangaderoo committed Dec 23, 2009
1 parent ff88823 commit 4c49d71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfpdb/DerivedStats.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def calcCBets(self, hand):
# XXX: enumerate(list, start=x) is python 2.6 syntax; 'start'
# came there
#for i, street in enumerate(hand.actionStreets[2:], start=1):
for i, street in enumerate(hand.actionStreets[2:]:
for i, street in enumerate(hand.actionStreets[2:]):
name = self.lastBetOrRaiser(hand.actionStreets[i+1])
if name:
chance = self.noBetsBefore(hand.actionStreets[i+2], name)
Expand Down

0 comments on commit 4c49d71

Please sign in to comment.