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()?),