diff --git a/player/player/discard.py b/player/player/discard.py deleted file mode 100644 index 3ecf828..0000000 --- a/player/player/discard.py +++ /dev/null @@ -1,8 +0,0 @@ -from table.supply import Supply - - -class Discard(Supply): - def cycle_card(self, deck): - while self.get_remaining() > 0: - self.transfer_top_card(deck) - deck.shuffle()