From d78fe540f1efb1c90cc5c2724272e6eb2364b9c3 Mon Sep 17 00:00:00 2001 From: Micheal A Date: Wed, 30 Nov 2022 18:56:49 +0000 Subject: [PATCH] bug fixing --- code/Card.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/Card.py b/code/Card.py index 86e43b2b..d6d89da9 100644 --- a/code/Card.py +++ b/code/Card.py @@ -122,8 +122,8 @@ def find_defining_class(obj, method_name): deck.shuffle() hand = Hand() - print find_defining_class(hand, 'shuffle') + print (find_defining_class(hand, 'shuffle')) deck.move_cards(hand, 5) hand.sort() - print hand + print (hand)