aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 8914f4f..dffbfff 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -530,8 +530,7 @@ struct Props {
fn restore(save_path: &str) -> Option<(String, Props)> {
let args: Args = argh::from_env();
let width = args.width;
- let path = args.path
- .and_then(|s| Some(fs::canonicalize(s).unwrap().to_str().unwrap().to_string()));
+ let path = args.path.map(|s| fs::canonicalize(s).unwrap().to_str().unwrap().to_string());
let save = fs::read_to_string(save_path).and_then(|s| {
let mut lines = s.lines();
Ok((