From 980bee20410c59a6842ba2010691cad212b07fff Mon Sep 17 00:00:00 2001 From: coreyphillips Date: Wed, 11 Dec 2024 16:09:34 -0500 Subject: [PATCH] style: fix indentation in inner_send_auth_token --- pubky/src/shared/auth.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pubky/src/shared/auth.rs b/pubky/src/shared/auth.rs index 8754b5a..5c37f48 100644 --- a/pubky/src/shared/auth.rs +++ b/pubky/src/shared/auth.rs @@ -143,7 +143,8 @@ impl PubkyClient { path_segments.push(&channel_id); drop(path_segments); - let response = self.request(Method::POST, callback) + let response = self + .request(Method::POST, callback) .body(encrypted_token) .send() .await?;