[NEWIMPORT] Syntax fix
This commit is contained in:
parent
9012c74db7
commit
d5de93da28
|
@ -272,7 +272,7 @@ class DerivedStats():
|
||||||
# XXX: enumerate(list, start=x) is python 2.6 syntax; 'start'
|
# XXX: enumerate(list, start=x) is python 2.6 syntax; 'start'
|
||||||
# came there
|
# came there
|
||||||
#for i, street in enumerate(hand.actionStreets[2:], start=1):
|
#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])
|
name = self.lastBetOrRaiser(hand.actionStreets[i+1])
|
||||||
if name:
|
if name:
|
||||||
chance = self.noBetsBefore(hand.actionStreets[i+2], name)
|
chance = self.noBetsBefore(hand.actionStreets[i+2], name)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user