Warn when a person named '*' exists during RESET_PERSON=* bulk reset

This commit is contained in:
2026-06-14 01:46:46 +00:00
parent 19f1a5e03b
commit a9c1114b86
+5
View File
@@ -163,6 +163,11 @@ def main() -> None:
if reset_person_name:
if reset_person_name == "*":
names = list(get_person_summary().keys())
if "*" in names:
rprint(
"[yellow]Note: a person literally named '*' exists in the tracker "
"and will be reset along with everyone else.[/yellow]"
)
if names:
for name in names:
reset_person(name)