Skip to content

Commit a410a68

Browse files
committed
overlong
1 parent 049f87f commit a410a68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::{fs, process};
1+
use std::{fs, process::Command};
22

33
use anyhow::Result;
44
use clap::Parser;
@@ -47,7 +47,7 @@ tags = {:?}{}
4747
} else {
4848
fs::write(&path, output)?;
4949
}
50-
process::Command::new("xdg-open").arg(path).status()?;
50+
Command::new("xdg-open").arg(path).status()?;
5151

5252
Ok(())
5353
}

0 commit comments

Comments
 (0)