8 lines
138 B
Python
Raw Permalink Normal View History

2017-12-30 12:15:51 -06:00
from table.supply import Supply
from random import shuffle
class Deck(Supply):
def shuffle(self):
shuffle(self._Supply__card)