From 17f01e6a58a8d1546124a58c158750ccbd3cc01f Mon Sep 17 00:00:00 2001 From: pacexy Date: Wed, 29 Jan 2025 19:15:34 +0800 Subject: [PATCH] remove dbg --- src/exercise.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/exercise.rs b/src/exercise.rs index f4da9123..e018c7f8 100644 --- a/src/exercise.rs +++ b/src/exercise.rs @@ -83,8 +83,6 @@ impl Exercise { /// Open the exercise file in the specified editor pub fn open_in_editor(&self, editor: &str) -> io::Result { - dbg!(editor); - dbg!(self.path); let status = Command::new(editor).arg(self.path).status()?; Ok(status.success()) }