diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-13 00:58:32 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-13 00:58:32 +0200 |
| commit | 9352a0f7cfdd5f5fc102a25d8a93218bc3dbe462 (patch) | |
| tree | b998430c307c10defb79d91abe5d30471c5c4f12 /crates/turtle/src/command/client/sync | |
| parent | chore(treewide): Remove `cargo` warnings to 0 (diff) | |
| download | atuin-9352a0f7cfdd5f5fc102a25d8a93218bc3dbe462.zip | |
chore(treewide): Fix some of `clippy`'s error
Just a run of `cargo clippy --fix`
Diffstat (limited to 'crates/turtle/src/command/client/sync')
| -rw-r--r-- | crates/turtle/src/command/client/sync/status.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/turtle/src/command/client/sync/status.rs b/crates/turtle/src/command/client/sync/status.rs index e75171eb..caf3b90f 100644 --- a/crates/turtle/src/command/client/sync/status.rs +++ b/crates/turtle/src/command/client/sync/status.rs @@ -16,7 +16,7 @@ pub(crate) async fn run(settings: &Settings) -> Result<()> { println!("{}", "[Remote]".green()); println!("Address: {}", settings.sync.address); - println!("User id: {}", me); + println!("User id: {me}"); } else { bail!("You are not logged in to a sync server - cannot show sync status"); } |
