Implement Clippy suggestions

They were actually sensible for once???
This commit is contained in:
Reinout Meliesie 2026-01-22 15:59:51 +01:00
commit 4c2ad03a0e
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
16 changed files with 31 additions and 33 deletions

View file

@ -99,7 +99,7 @@ async fn create_client(data_dir: &OsStr) -> Result<Client, DataManagerError> {
Ok(())
})
.await
.map(|_| client)
.map(|()| client)
})
.await;