fix clippy warnings

This commit was merged in pull request #57.
This commit is contained in:
2026-08-30 09:25:49 +00:00
parent 3c657045ca
commit 91948bdcf5
4 changed files with 8 additions and 14 deletions
+1 -3
View File
@@ -21,9 +21,7 @@ impl Error for FlashStoreError {}
impl Display for FlashStoreError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
err => write!(f, "FlashStoreError:\n{:?}", err.0),
}
write!(f, "FlashStoreError:\n{:?}", self.0)
}
}