fix/loop: drobné opravy

This commit is contained in:
2026-06-25 13:46:38 +02:00
parent 5f5d3319ed
commit 7f9e3e9ef7
+2 -2
View File
@@ -148,7 +148,7 @@ def check_value(throw: str) -> bool:
return hodnota
def add_players(iter=False):
def add_players():
global pointer, first, final_score
while True:
@@ -182,7 +182,7 @@ def add_players(iter=False):
try:
inp = int(inp)
final_score = inp
except ValueError as e:
except ValueError:
print("Zadejte prosím platnou číselnou hodnotu.")
else:
break