remove dbg

This commit is contained in:
pacexy 2025-01-29 19:15:34 +08:00
parent ef3d2da982
commit 17f01e6a58

View file

@ -83,8 +83,6 @@ impl Exercise {
/// Open the exercise file in the specified editor
pub fn open_in_editor(&self, editor: &str) -> io::Result<bool> {
dbg!(editor);
dbg!(self.path);
let status = Command::new(editor).arg(self.path).status()?;
Ok(status.success())
}