diff --git a/mempalace/entity_detector.py b/mempalace/entity_detector.py index 061778c..80fc107 100644 --- a/mempalace/entity_detector.py +++ b/mempalace/entity_detector.py @@ -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":