Skip to content

Commit 196e691

Browse files
authored
Fix logical format conflict (#605)
1 parent b3027f8 commit 196e691

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/azure/builder.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -670,13 +670,13 @@ impl MicrosoftAzureBuilder {
670670
self.account_name = Some(validate(a)?);
671671
self.container_name = Some(validate(parsed.username())?);
672672
}
673-
Some((a, "dfs.fabric.microsoft.com")) | Some((a, "blob.fabric.microsoft.net")) => {
673+
Some((a, "dfs.fabric.microsoft.com"))
674+
| Some((a, "blob.fabric.microsoft.net")) => {
674675
self.account_name = Some(validate(a)?);
675676
self.container_name = Some(validate(parsed.username())?);
676677
self.use_fabric_endpoint = true.into();
677678
}
678-
_ => return Err(Error::UrlNotRecognised { url: url.into() }.into())
679-
679+
_ => return Err(Error::UrlNotRecognised { url: url.into() }.into()),
680680
}
681681
}
682682
}

0 commit comments

Comments
 (0)