From 2e2b251c5f68cf4e587cb89bcfbb9fa00c0a3085 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Fri, 31 Oct 2025 13:19:46 +0100 Subject: [PATCH] Apply small improvement --- apps/desktop/desktop_native/ssh_agent/src/protocol/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/desktop_native/ssh_agent/src/protocol/types.rs b/apps/desktop/desktop_native/ssh_agent/src/protocol/types.rs index 680c6d75af9..5ba1f948236 100644 --- a/apps/desktop/desktop_native/ssh_agent/src/protocol/types.rs +++ b/apps/desktop/desktop_native/ssh_agent/src/protocol/types.rs @@ -406,7 +406,7 @@ impl TryFrom for PublicKey { impl Debug for PublicKey { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { - write!(f, "SshPublicKey(\"{}\")", self) + write!(f, "SshPublicKey(\"{self}\")") } }