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()) }