Skip to content

Commit

Permalink
fix unnecessary return
Browse files Browse the repository at this point in the history
  • Loading branch information
bblancha committed Feb 6, 2024
1 parent 355bac0 commit 48bbb2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/jira/workflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -388,10 +388,10 @@ pub async fn merge_pending_versions(
}
}

return Ok(version::MergedVersion {
Ok(version::MergedVersion {
issues: all_relevant_versions,
version_id: Some(id),
});
})
}

fn find_relevant_versions(
Expand Down

0 comments on commit 48bbb2e

Please sign in to comment.