Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
cataggar committed Jan 10, 2024
1 parent ff69b94 commit a9559d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl SpecificAzureCredential {
let credential_type = env.var(AZURE_CREDENTIAL_TYPE)?;
let source: SpecificAzureCredentialEnum =
// case insensitive and allow spaces
match credential_type.replace(" ", "").to_lowercase().as_str() {
match credential_type.replace(' ', "").to_lowercase().as_str() {
azure_credential_types::ENVIRONMENT => EnvironmentCredential::create(options)
.map(SpecificAzureCredentialEnum::Environment)
.with_context(ErrorKind::Credential, || {
Expand Down

0 comments on commit a9559d3

Please sign in to comment.