From e846abe3c7d33b17bddbf3198321fc1a17736a3e Mon Sep 17 00:00:00 2001 From: Joerg Zeidler <62105035+JoergZeidler@users.noreply.github.com> Date: Mon, 24 Mar 2025 15:26:04 +0100 Subject: [PATCH] fix: cargo clippy finding Signed-off-by: Joerg Zeidler <62105035+JoergZeidler@users.noreply.github.com> --- src/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.rs b/src/auth.rs index 6efb52c..f35f20f 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -172,7 +172,7 @@ async fn request_access_token(auth_info: &AuthInfo) -> Result { log::info!("Redirecting to authentication provider."); log::info!( "Note: if the browser does not open automatically, use this link to complete login: {}", - auth_url.to_string() + auth_url ); let _ = open::that(auth_url.to_string());