File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -686,9 +686,7 @@ where
686
686
}
687
687
688
688
/// Return a list of all known team members.
689
- fn all_team_members ( ) -> DashResult < Vec < GitHubUser > > {
690
- specific_subteam_members ( |_| true )
691
- }
689
+ fn all_team_members ( ) -> DashResult < Vec < GitHubUser > > { specific_subteam_members ( |_| true ) }
692
690
693
691
/// Check if an issue comment is written by a member of one of the subteams
694
692
/// labelled on the issue.
Original file line number Diff line number Diff line change 1
1
macro_rules! ok_or {
2
2
( $test: expr, $on_err: expr) => {
3
- ok_or!( $test, _e => $on_err)
3
+ ok_or!( $test, _e => $on_err)
4
4
} ;
5
5
( $test: expr, $why: ident => $on_err: expr) => {
6
6
match $test {
@@ -12,7 +12,7 @@ macro_rules! ok_or {
12
12
13
13
macro_rules! ok_or_continue {
14
14
( $test: expr, $why: ident => $on_err: expr) => {
15
- ok_or!( $test, $why => { $on_err; continue ; } )
15
+ ok_or!( $test, $why => { $on_err; continue ; } )
16
16
} ;
17
17
}
18
18
You can’t perform that action at this time.
0 commit comments