From 60026b1c8532a79809fc01d23d880d1627b4ead9 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Wed, 16 Aug 2023 10:58:03 -0500 Subject: [PATCH] Prompt state for REPL does not need PartialEq --- src/cli/repl.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cli/repl.rs b/src/cli/repl.rs index 6468cc0..6639424 100644 --- a/src/cli/repl.rs +++ b/src/cli/repl.rs @@ -9,7 +9,6 @@ use lune::Lune; const MESSAGE_WELCOME: &str = concat!("Lune v", env!("CARGO_PKG_VERSION")); const MESSAGE_INTERRUPT: &str = "Interrupt: ^C again to exit"; -#[derive(PartialEq)] enum PromptState { Regular, Continuation,