mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-31 23:17:38 -08:00
Python: Fix string concatenation
This commit is contained in:
@@ -14,7 +14,6 @@ Supports Python version 3.8 or later.
|
||||
from random import random
|
||||
from typing import Final, FrozenSet, Optional, Tuple
|
||||
|
||||
|
||||
########################################################################################
|
||||
# Optional configs
|
||||
########################################################################################
|
||||
@@ -178,8 +177,8 @@ def get_move(current_loc: Optional[Tuple[int, int]]) -> Tuple[int, int]:
|
||||
else:
|
||||
prompt = (
|
||||
"PLEASE READ THE DIRECTIONS AGAIN.\n"
|
||||
+ "YOU HAVE BEGUN ILLEGALLY.\n\n"
|
||||
+ "WHERE WOULD YOU LIKE TO START? "
|
||||
"YOU HAVE BEGUN ILLEGALLY.\n\n"
|
||||
"WHERE WOULD YOU LIKE TO START? "
|
||||
)
|
||||
else:
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user