summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddy Pedroni <eddy@0xf7.com>2022-10-18 21:11:27 +0200
committerEddy Pedroni <eddy@0xf7.com>2022-10-18 21:11:27 +0200
commit43c615646ab31626e4f8b8fa074a669195b4306a (patch)
treec71abe81c2c51d97411cc935ef3d934ca5a16904
parent7bc31c0d156feb0cf07949a439b6d29fb07d6b45 (diff)
Added noun information also when answer is correct, removed debug print
-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!")