fixed typo

This commit is contained in:
2026-01-29 12:09:37 -05:00
parent bdc5759f16
commit d424561205
4 changed files with 1 additions and 1 deletions

View File

@@ -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

Binary file not shown.

Binary file not shown.

Binary file not shown.