Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
davepacheco committed Oct 25, 2023
1 parent fc91640 commit 3e79d69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev-tools/omdb/src/bin/omdb/nexus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ async fn cmd_nexus_background_tasks_show(
client.bgtask_list().await.context("listing background tasks")?;
// Convert the HashMap to a BTreeMap because we want the keys in sorted
// order.
let mut tasks = response.into_inner().into_iter().collect::<BTreeMap<_, _>>();
let mut tasks =
response.into_inner().into_iter().collect::<BTreeMap<_, _>>();

// We want to pick the order that we print some tasks intentionally. Then
// we want to print anything else that we find.
Expand Down

0 comments on commit 3e79d69

Please sign in to comment.