summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kasus.py4
-rw-r--r--solver.py1
2 files changed, 1 insertions, 4 deletions
diff --git a/kasus.py b/kasus.py
index 911cb5d..68b0be0 100644
--- a/kasus.py
+++ b/kasus.py
@@ -24,9 +24,7 @@ while True:
if solution.evaluate(response):
correct += 1
- print(f"{Fore.GREEN}Richtig ({correct}/{total})")
+ print(f"{Fore.GREEN}Richtig ({correct}/{total}):{Style.RESET_ALL} {solution.noun}")
else:
print(f"{Fore.RED}Falsch ({correct}/{total}):{Style.RESET_ALL} {solution.full}, {solution.noun}")
- print(f"{Style.RESET_ALL}")
-
diff --git a/solver.py b/solver.py
index 7935204..423e2b4 100644
--- a/solver.py
+++ b/solver.py
@@ -37,7 +37,6 @@ def get():
solution = solve(query)
return (query, solution)
except Exception as e:
- print(e)
continue
raise Exception("Could not find query after 10 attempts!")