diff --git a/Project 1/Deck.py b/Project 1/Deck.py index 268ebee..a31eff5 100644 --- a/Project 1/Deck.py +++ b/Project 1/Deck.py @@ -15,7 +15,7 @@ class Deck: def shuffle(self): for i in range(len(self._cards)): - j = random.randomrange(i, len(self._cards)) + j = random.randrange(i, len(self._cards)) self._cards[i], self._cards[j] = self._cards[j], self._cards[i] self._next_card = 0 diff --git a/Project 1/__pycache__/Card.cpython-314.pyc b/Project 1/__pycache__/Card.cpython-314.pyc new file mode 100644 index 0000000..a5c9f2b Binary files /dev/null and b/Project 1/__pycache__/Card.cpython-314.pyc differ diff --git a/Project 1/__pycache__/Deck.cpython-314.pyc b/Project 1/__pycache__/Deck.cpython-314.pyc new file mode 100644 index 0000000..a156566 Binary files /dev/null and b/Project 1/__pycache__/Deck.cpython-314.pyc differ diff --git a/Project 1/__pycache__/Solitaire.cpython-314.pyc b/Project 1/__pycache__/Solitaire.cpython-314.pyc new file mode 100644 index 0000000..f81fc9d Binary files /dev/null and b/Project 1/__pycache__/Solitaire.cpython-314.pyc differ