From e4ababed6a6b4f4f358c9e2d293e9b10a0954d52 Mon Sep 17 00:00:00 2001 From: Ray Kohler Date: Mon, 11 Aug 2025 18:14:21 -0400 Subject: fix: clippy warnings I don't have on my version of clippy --- crates/atuin-client/src/record/sqlite_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/atuin-client/src/record') diff --git a/crates/atuin-client/src/record/sqlite_store.rs b/crates/atuin-client/src/record/sqlite_store.rs index e5f5f4e6..ed51f3fd 100644 --- a/crates/atuin-client/src/record/sqlite_store.rs +++ b/crates/atuin-client/src/record/sqlite_store.rs @@ -32,7 +32,7 @@ impl SqliteStore { pub async fn new(path: impl AsRef, timeout: f64) -> Result { let path = path.as_ref(); - debug!("opening sqlite database at {:?}", path); + debug!("opening sqlite database at {path:?}"); if utils::broken_symlink(path) { eprintln!( -- cgit v1.3.1