generated from ElnuDev/rust-project
cargo clippy --fix
This commit is contained in:
parent
2c72d5fc15
commit
f6775da3d0
2 changed files with 2 additions and 2 deletions
|
@ -27,6 +27,6 @@ fn main() -> dyesub::Result<()> {
|
|||
path.set_extension("svg");
|
||||
path
|
||||
});
|
||||
dyesub::render_file(&args.input, &output)?;
|
||||
dyesub::render_file(&args.input, output)?;
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ impl From<Box<dyn Error>> for ResultMessageData {
|
|||
message: value
|
||||
.source()
|
||||
.map(|source| source.to_string())
|
||||
.unwrap_or_else(|| "".to_string()),
|
||||
.unwrap_or_default(),
|
||||
colorway: Colorway::Bad,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue