Skip to content

Commit

Permalink
fix && fmt
Browse files Browse the repository at this point in the history
Signed-off-by: danbugs <[email protected]>
  • Loading branch information
danbugs committed Dec 28, 2023
1 parent 7020c84 commit cfbe858
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/src/player.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,10 @@ where
// ^^^ unwrapping in these instances is fine due to the query context that we are in, if an error occurs,
// we want to panic regardless
else {
tracing::info!("🚫 skipping set from tourney \"{}\"", s.event.tournament.as_ref().unwrap().name);
tracing::info!(
"🚫 skipping set from tourney \"{}\"",
s.event.tournament.as_ref().unwrap().name
);
continue;
}
}
Expand Down

0 comments on commit cfbe858

Please sign in to comment.