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 bef1a99 commit fefa7f3
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 @@ -111,13 +111,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 fefa7f3

Please sign in to comment.