瀏覽代碼

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