Skip to content

Commit da1d04c

Browse files
committed
FIX: A string needs to be returned
1 parent 115601f commit da1d04c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

game/blackJackGame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ def get_player_overview(self, show_points: bool = False, dealer: bool = False) -
248248
text = ""
249249

250250
if not self.game_running:
251-
return
252-
251+
return text
252+
253253
for counter, user in enumerate(self.players):
254254
if counter == self.current_player:
255255
text += "▶️"

0 commit comments

Comments
 (0)