fix: correct typo in entity_detector interactive classification prompt (#755)

'(r)roject' had a duplicate 'r', making it read as '(r)roject'
instead of the intended '(r)project'.

Small UX fix — no behavior change.

Co-authored-by: Arnold Wender <arnold.wender@gmail.com>
This commit is contained in:
Igor Lins e Silva
2026-04-13 01:43:57 -03:00
committed by GitHub
parent c17cf079ad
commit 39e1651af3
+1 -1
View File
@@ -760,7 +760,7 @@ def confirm_entities(detected: dict, yes: bool = False) -> dict:
if detected["uncertain"]:
print("\n Uncertain entities — classify each:")
for e in detected["uncertain"]:
ans = input(f" {e['name']} — (p)erson, (r)roject, or (s)kip? ").strip().lower()
ans = input(f" {e['name']} — (p)erson, (r)project, or (s)kip? ").strip().lower()
if ans == "p":
confirmed_people.append(e["name"])
elif ans == "r":