Skip to content

Commit 41b460b

Browse files
committed
Format project with nightly toolchain
1 parent f8114be commit 41b460b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

crates/cli/src/sync.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,10 @@ pub async fn config_sync(
190190
if let Some(client_secret) = provider.client_secret.as_deref() {
191191
Some(encrypter.encrypt_to_string(client_secret.as_bytes())?)
192192
} else if let Some(mut siwa) = provider.sign_in_with_apple.clone() {
193-
// if private key file is defined and not private key (raw), we populate the private key
194-
// to hold the content of the private key file. private key (raw) takes precedence so
195-
// both can be defined without issues
193+
// if private key file is defined and not private key (raw), we populate the
194+
// private key to hold the content of the private key file.
195+
// private key (raw) takes precedence so both can be defined
196+
// without issues
196197
if siwa.private_key.is_none() {
197198
if let Some(private_key_file) = siwa.private_key_file.take() {
198199
let key = tokio::fs::read_to_string(private_key_file).await?;

0 commit comments

Comments
 (0)