diff --git a/bataille des cartes/bataille-carte/card.py b/bataille des cartes/bataille-carte/card.py index ca79c48a3be6958bfef9943e807a983ace13edba..aaa5936dccce88d19056f533ec5a804e5e958e36 100755 --- a/bataille des cartes/bataille-carte/card.py +++ b/bataille des cartes/bataille-carte/card.py @@ -137,7 +137,7 @@ class Card(object): """ res=[] for i in range(n_card): - res.append(random.choice(cartes)) + res.append(Card(random.choice(Card.VALUES),random.choice(Card.COLORS))) return res def __eq__(self, card: Card) -> bool: