Make clippy happy

- Applied many of the `clippy` suggestions.
This commit is contained in:
Malte Meiboom
2026-04-27 13:42:47 +02:00
parent 799f6eb588
commit 4e28e636a1
6 changed files with 44 additions and 43 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ impl Display for Introducer {
.map(|u| String::from_utf8_lossy(u.userid().value()).to_string())
.collect::<Vec<String>>()
.join(", ");
write!(f, "Introducer: {}\n", self.cert.fingerprint())?;
writeln!(f, "Introducer: {}", self.cert.fingerprint())?;
write!(f, " UserIDs: {}", uids)?;
Ok(())
}