Merge pull request #46 from tauri-apps/fix/clippy

fix: make clippy 1.66 happy
This commit is contained in:
Jonas Kruckenberg
2023-01-06 16:45:18 +01:00
committed by GitHub
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)?;