From 9352a0f7cfdd5f5fc102a25d8a93218bc3dbe462 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 13 Jun 2026 00:58:32 +0200 Subject: chore(treewide): Fix some of `clippy`'s error Just a run of `cargo clippy --fix` --- crates/turtle/src/command/client/sync/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/turtle/src/command/client/sync/status.rs') 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"); } -- cgit v1.3.1