cleanup harmony with clippy

This commit is contained in:
Ian Letourneau 2025-08-04 17:49:40 -04:00
parent 024084859e
commit 74182bbc60

View File

@ -107,7 +107,7 @@ impl OPNsenseShell for SshOPNSenseShell {
match result {
Ok(bytes) => {
if !bytes.is_empty() {
remote_file.write(&bytes).await?;
AsyncWriteExt::write_all(&mut remote_file, &bytes).await?;
}
}
Err(e) => todo!("Error unhandled {e}"),