aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/command/client/sync/status.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-13 00:58:32 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-13 00:58:32 +0200
commit9352a0f7cfdd5f5fc102a25d8a93218bc3dbe462 (patch)
treeb998430c307c10defb79d91abe5d30471c5c4f12 /crates/turtle/src/command/client/sync/status.rs
parentchore(treewide): Remove `cargo` warnings to 0 (diff)
downloadatuin-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/status.rs')
-rw-r--r--crates/turtle/src/command/client/sync/status.rs2
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");
}