Skip to content

Commit

Permalink
feat: fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
bsenth200 committed Sep 3, 2024
1 parent c3d8c02 commit f207dd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/sdk/src/api/manifest/device_manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ impl Default for DistributionConfiguration {
let library_path = if cfg!(feature = "local_dev") {
std::env::var("HOME").unwrap_or_default() + "/firebolt-app-library.json"
} else {
"/etc/firebolt-app-library.json".into()
"/etc/firebolt-app-library.json".to_string()
};

DistributionConfiguration {
library: library_path.into(),
library: library_path,
}
}
}
Expand Down

0 comments on commit f207dd9

Please sign in to comment.