Make clippy happy

This commit is contained in:
Konstantin Knizhnik
2024-06-26 22:10:06 +03:00
parent 6c0e44be4c
commit dfed7029e1
2 changed files with 5 additions and 2 deletions

View File

@@ -640,7 +640,7 @@ async fn import_file(
{
let bytes = read_all_bytes(reader).await?;
modification
.put_file(&file_path.to_str().unwrap(), &bytes, ctx)
.put_file(file_path.to_str().unwrap(), &bytes, ctx)
.await?;
debug!("imported aux file \"{}\"", file_path.display());
} else {