Skip to content

Commit

Permalink
chore: appease clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mautamu committed Apr 11, 2024
1 parent 2147bf6 commit fe01dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lefthk/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub fn load() -> Result<Config> {
return Err(LeftError::NoConfigFound);
}
let contents = fs::read_to_string(file_name)?;
Ok(Config::try_from(contents)?)
Config::try_from(contents)
}

fn propagate_exit_chord(chords: Vec<&mut Keybind>, exit_chord: &Option<Keybind>) {
Expand Down

0 comments on commit fe01dd9

Please # to comment.