0
0
Fork 0

apply clippy fixes

This commit is contained in:
Adrian Wannenmacher 2023-09-24 07:03:32 +02:00
parent 39cb90de82
commit 57c60f2074
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ impl Display for Ids {
writeln!(f, " {user}")?;
}
writeln!(f, "")?;
writeln!(f)?;
writeln!(f, "groups:")?;
for group in &self.groups {

View File

@ -20,7 +20,7 @@ impl Display for Names {
writeln!(f, " {user}")?;
}
writeln!(f, "")?;
writeln!(f)?;
writeln!(f, "groups:")?;
for group in &self.groups {