remove empty str inside println

Reasons:
- Functionally it has the same result.

Signed-off-by: Perma Alesheikh <me@prma.dev>
This commit is contained in:
Perma Alesheikh 2024-01-08 21:30:17 +03:30 committed by Clément DOUIN
parent 95eed65193
commit 921194da5c
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72

View file

@ -209,7 +209,7 @@ pub(crate) async fn configure(account_name: &str, email: &str) -> Result<Backend
let (redirect_url, csrf_token) = auth_code_grant.get_redirect_url(&client);
println!("{}", redirect_url.to_string());
println!("");
println!();
let (access_token, refresh_token) = auth_code_grant
.wait_for_redirection(&client, csrf_token)