File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,9 @@ def _fcp_proposal_with_disposition(self, disposition: str):
306
306
307
307
# Remove proposal in review label if present
308
308
if self .config .github_fcp_proposal_in_review_label in self .proposal_labels_str :
309
- self .proposal_labels_str .remove (self .config .github_fcp_proposal_in_review_label )
309
+ self .proposal_labels_str .remove (
310
+ self .config .github_fcp_proposal_in_review_label
311
+ )
310
312
311
313
# Remove finished FCP label if present
312
314
if self .config .github_fcp_finished_label in self .proposal_labels_str :
@@ -550,7 +552,9 @@ def _cancel_fcp(self):
550
552
if self .config .github_disposition_merge_label in self .proposal_labels_str :
551
553
self .proposal_labels_str .remove (self .config .github_disposition_merge_label )
552
554
if self .config .github_disposition_postpone_label in self .proposal_labels_str :
553
- self .proposal_labels_str .remove (self .config .github_disposition_postpone_label )
555
+ self .proposal_labels_str .remove (
556
+ self .config .github_disposition_postpone_label
557
+ )
554
558
555
559
# Add the proposal in review label back again
556
560
self .proposal_labels_str .append (self .config .github_fcp_proposal_in_review_label )
You can’t perform that action at this time.
0 commit comments