From 1aad39ded18bcf6d51fc00ab982b0060292c831b Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Mon, 12 Jun 2023 18:55:27 +0200 Subject: [PATCH] Remove unneccessary variable --- src/api/auth/login.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/auth/login.rs b/src/api/auth/login.rs index e72278f..73abf24 100644 --- a/src/api/auth/login.rs +++ b/src/api/auth/login.rs @@ -15,7 +15,6 @@ impl Instance { &mut self, login_schema: &LoginSchema, ) -> Result { - let mut requester = LimitedRequester; let json_schema = json!(login_schema); let client = Client::new(); let endpoint_url = self.urls.get_api().to_string() + "/auth/login";