Skip to content

Commit 8056385

Browse files
committed
[automated] Fix code linting
1 parent 4c969cd commit 8056385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lib/approval.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class ApprovalManager {
171171
// Update awaiting lists
172172
this.awaitingCore = this.coreTeamMembers.filter((u) => !this.coreApprovals.has(u) && !this.coreRejections.has(u));
173173
this.awaitingMaintainers = this.maintainerTeamMembers.filter(
174-
(u) => !this.maintainerApprovals.has(u) && !this.maintainerRejections.has(u)
174+
(u) => !this.maintainerApprovals.has(u) && !this.maintainerRejections.has(u),
175175
);
176176
}
177177
}

0 commit comments

Comments
 (0)