diff options
| author | Ray Kohler <ataraxia937@ataraxia937.xyz> | 2025-08-11 18:14:21 -0400 |
|---|---|---|
| committer | Ellie Huxtable <ellie@elliehuxtable.com> | 2025-09-10 12:57:43 -0700 |
| commit | e4ababed6a6b4f4f358c9e2d293e9b10a0954d52 (patch) | |
| tree | b81f4bb986384ce59df6ae024f1ccf3c94da08e8 /crates/atuin-client/src/record | |
| parent | fix: run `cargo fmt` (diff) | |
| download | atuin-e4ababed6a6b4f4f358c9e2d293e9b10a0954d52.zip | |
fix: clippy warnings I don't have on my version of clippy
Diffstat (limited to 'crates/atuin-client/src/record')
| -rw-r--r-- | crates/atuin-client/src/record/sqlite_store.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<Path>, timeout: f64) -> Result<Self> { let path = path.as_ref(); - debug!("opening sqlite database at {:?}", path); + debug!("opening sqlite database at {path:?}"); if utils::broken_symlink(path) { eprintln!( |
