Skip to content

Commit fd60277

Browse files
committed
final linting
1 parent c0de1c1 commit fd60277

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

command_handler.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,9 @@ def _fcp_proposal_with_disposition(self, disposition: str):
306306

307307
# Remove proposal in review label if present
308308
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+
)
310312

311313
# Remove finished FCP label if present
312314
if self.config.github_fcp_finished_label in self.proposal_labels_str:
@@ -550,7 +552,9 @@ def _cancel_fcp(self):
550552
if self.config.github_disposition_merge_label in self.proposal_labels_str:
551553
self.proposal_labels_str.remove(self.config.github_disposition_merge_label)
552554
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+
)
554558

555559
# Add the proposal in review label back again
556560
self.proposal_labels_str.append(self.config.github_fcp_proposal_in_review_label)

0 commit comments

Comments
 (0)