cargo clippy --fix

This commit is contained in:
Elnu 2023-08-24 12:39:19 -07:00
parent 2c72d5fc15
commit f6775da3d0
2 changed files with 2 additions and 2 deletions

View file

@ -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(())
}