Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
spastorino committed May 14, 2020
1 parent f5648b1 commit 313ac52
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/handlers/prioritize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,11 @@ async fn handle_input(
}
None
}
Prioritize::Start => {
Some(format!(
"@*WG-prioritization* issue [#{}]({}) has been requested for prioritization.",
issue.number,
event.html_url().unwrap()
))
}
Prioritize::Start => Some(format!(
"@*WG-prioritization* issue [#{}]({}) has been requested for prioritization.",
issue.number,
event.html_url().unwrap()
)),
Prioritize::End => {
// Shouldn't be necessary in practice as we only end on label
// removal, but if we add support in the future let's be sure to do
Expand Down

0 comments on commit 313ac52

Please sign in to comment.