mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Fix new clippy lints (#5892)
This commit is contained in:
parent
9d73a0d112
commit
8a3ec443f1
18 changed files with 32 additions and 37 deletions
|
@ -156,7 +156,7 @@ pub fn lint(file: String) -> Result<(), DynError> {
|
|||
return Ok(());
|
||||
}
|
||||
let path = path::themes().join(file.clone() + ".toml");
|
||||
let theme = std::fs::read_to_string(&path).unwrap();
|
||||
let theme = std::fs::read_to_string(path).unwrap();
|
||||
let theme: Theme = toml::from_str(&theme).expect("Failed to parse theme");
|
||||
|
||||
let mut messages: Vec<String> = vec![];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue