From 92332fa5072652110fcaec2989f6e56e0267bf99 Mon Sep 17 00:00:00 2001 From: Simone Cottini Date: Wed, 29 Nov 2023 13:25:25 +0100 Subject: [PATCH] Format... --- examples/get_jwks.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/get_jwks.rs b/examples/get_jwks.rs index dc96d93..32fd333 100644 --- a/examples/get_jwks.rs +++ b/examples/get_jwks.rs @@ -33,10 +33,7 @@ async fn main() { // The kid "unknown" cannot be a JWKS valid KID. This must not be found here let result: Result = client.get("unknown").await; - println!( - "Get with kid \"unknown\": {}", - result.unwrap_err() - ); + println!("Get with kid \"unknown\": {}", result.unwrap_err()); // The provided kid (assuming is the same you got from your tenant) is valid and could be found. let result: Result = client.get(&kid).await;