do you mean
quote:
Originally posted by Jarrod
def __str__(self):
if self.cards:
rep = ""
for card in self.cards:
rep += str(card) + " "
to
def __str__(self):
if self.cards:
rep = ""
for card in self.cards:
rep += repr(card) + " "
?
------------------
i replaced all the strs with repr s but no luck