Skip to content

Commit f1b7810

Browse files
committed
Fix remaining clippy lints.
1 parent def3f83 commit f1b7810

File tree

2 files changed

+23
-41
lines changed

2 files changed

+23
-41
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ impl TryFrom<String> for Algorithm {
150150
"FN_DSA_512" => Ok(Algorithm::FN_DSA_512),
151151
"ML_DSA_44" => Ok(Algorithm::ML_DSA_44),
152152
"SLH_DSA_128S" => Ok(Algorithm::SLH_DSA_128S),
153-
_ => Err(format!("Unknown algorithm string: {}", s)),
153+
_ => Err(format!("Unknown algorithm string: {s}")),
154154
}
155155
}
156156
}

0 commit comments

Comments
 (0)