Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
storopoli committed Dec 19, 2024
1 parent 673a524 commit 9146439
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/prover-client/src/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ impl TaskTracker {
.map(|(id, dependent_task)| {
let all_dependencies_completed = dependent_task.dependencies.iter().all(|dep_id| {
tasks
.get(dep_id).is_some_and(|t| t.status == ProvingTaskStatus::Completed)
.get(dep_id)
.is_some_and(|t| t.status == ProvingTaskStatus::Completed)
});
// Return the task ID and completion status of dependencies
(*id, all_dependencies_completed)
Expand Down

0 comments on commit 9146439

Please sign in to comment.