Merge pull request #83 from renatoliveira/main

fix: update input prompt for entity confirmation in entity_detector.py
This commit is contained in:
Ben Sigman 2026-04-07 13:51:50 -07:00 committed by GitHub
commit 3e6fc6ed9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -789,7 +789,7 @@ def confirm_entities(detected: dict, yes: bool = False) -> dict:
name = input(" Name (or enter to stop): ").strip()
if not name:
break
kind = input(f" Is '{name}' a (p)erson or (r)roject? ").strip().lower()
kind = input(f" Is '{name}' a (p)erson or p(r)oject? ").strip().lower()
if kind == "p":
confirmed_people.append(name)
elif kind == "r":