fix: make ci checks pass

This commit is contained in:
Patryk Osmaczko
2026-02-10 19:45:00 +01:00
committed by osmaczko
parent c5f9994c9e
commit cd737ea058
21 changed files with 62 additions and 74 deletions
+1 -4
View File
@@ -56,10 +56,7 @@ impl SqliteDb {
}
pub fn sqlcipher(path: String, key: String) -> Result<Self, StorageError> {
Self::new(StorageConfig::Encrypted {
path: path,
key: key,
})
Self::new(StorageConfig::Encrypted { path, key })
}
/// Returns a reference to the underlying connection.