소스 검색

cargo fmt

Santiago Pastorino 5 년 전
부모
커밋
6f378f1365
1개의 변경된 파일5개의 추가작업 그리고 7개의 파일을 삭제
  1. 5 7
      src/handlers/prioritize.rs

+ 5 - 7
src/handlers/prioritize.rs

@@ -114,13 +114,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