From 90cdef3bfaec281b4df47ae9944efb841b8eb525 Mon Sep 17 00:00:00 2001 From: Rob Brackett Date: Tue, 27 Jan 2026 13:13:26 -0800 Subject: [PATCH] Fix typo in non-interactive prompt message --- cr/rich_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cr/rich_utils.py b/cr/rich_utils.py index 217c5b7..2ffaae4 100644 --- a/cr/rich_utils.py +++ b/cr/rich_utils.py @@ -87,7 +87,7 @@ def prompt_yn(self, message: str, nouser: bool) -> bool: if nouser: self.print(" (Continuing without user input)") else: - self.print(" (Not continuting without user input)") + self.print(" (Not continuing without user input)") return nouser