fix: make clippy 1.66 happy

This commit is contained in:
FabianLars
2023-01-03 10:24:04 +01:00
parent 27b73413e9
commit 5b9144594b
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -176,7 +176,7 @@ impl Store {
.expect("failed to resolve app dir");
let store_path = app_dir.join(&self.path);
let bytes = read(&store_path)?;
let bytes = read(store_path)?;
self.cache = (self.deserialize)(&bytes).map_err(Error::Deserialize)?;