From 418e0b58673502adc17b09de769ce5d553f66fff Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Sat, 16 May 2026 18:15:00 -0700 Subject: [PATCH] spam enter for auto --- klondike-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klondike-cli/src/main.rs b/klondike-cli/src/main.rs index 4873412..f1f771a 100644 --- a/klondike-cli/src/main.rs +++ b/klondike-cli/src/main.rs @@ -135,7 +135,7 @@ impl core::str::FromStr for SessionInstruction { "new" | "n" => Self::New, "undo" | "u" => Self::Undo, "hint" | "h" => Self::Hint, - "auto" | "a" => Self::Auto, + "auto" | "a" | "" => Self::Auto, "exit" => Self::Exit, "s" => Self::Stock, other => Self::Klondike(other.parse()?),