tourneysPlayersIds is later updated by db.createOrUpdateTourneysPlayers and turned into a dict rather than a list so it makes sense to initialise as such

This commit is contained in:
Chaz Littlejohn 2011-03-30 03:18:36 +00:00
parent c361992b13
commit fc2b79a5e8

View File

@ -102,7 +102,7 @@ class Hand(object):
self.seating = []
self.players = []
self.posted = []
self.tourneysPlayersIds = []
self.tourneysPlayersIds = {}
# Collections indexed by street names
self.bets = {}