cargo fmt + clippy
Some checks failed
Build and test / build (push) Failing after 1m5s
Build and test / check (push) Failing after 1m17s
Build and test / test (push) Failing after 1m21s
Build and test / docs (push) Failing after 1m13s

This commit is contained in:
2025-12-08 13:28:45 +09:00
parent 7ce0d68021
commit a7a8ceedeb
10 changed files with 38 additions and 49 deletions

View File

@@ -51,7 +51,7 @@ where
.await
.map_err(MpdClientError::ConnectionError)?;
return Ok(version_line.trim().to_string());
Ok(version_line.trim().to_string())
}
async fn read_response(&mut self) -> Result<Vec<u8>, MpdClientError> {