Skip to content

Commit

Permalink
fixed clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vsbuffalo committed Oct 2, 2023
1 parent 358e47d commit 09dcbef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scidataflow"
version = "0.8.4"
version = "0.8.5"
edition = "2021"
exclude = ["logo.png", "tests/test_data/**"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ async fn run() -> Result<()> {
let msg = "Set either --github, --url, or specify an SciDataFlow Asset name.";
let url = match (github, url, asset) {
(Some(gh), None, None) => {
let gh = GitHubRepo::new(&gh).map_err(|e| {
let gh = GitHubRepo::new(gh).map_err(|e| {
anyhow!("GitHubRepo initialization failed: {}", e)
})?;
gh.url("data_manifest.yml")
Expand Down

0 comments on commit 09dcbef

Please sign in to comment.