Skip to content

Commit

Permalink
- fixed clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fivebanger committed Oct 29, 2024
1 parent 29e797f commit 3a6848a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl TokenProvider {
// scopes must be comma-separated
pub async fn get_token(&self, scopes: &str) -> Result<Token, Error> {
let client_id = self.session().client_id();
return self.get_token_with_client_id(scopes, &client_id).await;
self.get_token_with_client_id(scopes, &client_id).await
}

pub async fn get_token_with_client_id(
Expand Down

0 comments on commit 3a6848a

Please sign in to comment.