Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
davepacheco committed Aug 14, 2024
1 parent 5b79de3 commit 6982aa7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dev-tools/omdb/src/bin/omdb/nexus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,7 @@ async fn cmd_nexus_background_tasks_list(
client.bgtask_list().await.context("listing background tasks")?;
// Convert the HashMap to a BTreeMap because we want the keys in sorted
// order.
let tasks =
response.into_inner().into_iter().collect::<BTreeMap<_, _>>();
let tasks = response.into_inner().into_iter().collect::<BTreeMap<_, _>>();
let table_rows = tasks.values().map(BackgroundTaskStatusRow::from);
let table = tabled::Table::new(table_rows)
.with(tabled::settings::Style::empty())
Expand Down

0 comments on commit 6982aa7

Please sign in to comment.