Skip to content

Commit 6349efb

Browse files
committed
Ignore flake8 E231 false positive
1 parent bcc7b94 commit 6349efb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

cookie_python/manage/github.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ def find_pr(
3030
) -> Optional[PullRequest]:
3131
pulls = [
3232
pr
33-
for pr in repo.get_pulls(head=f"{self.username}:{head}", base=base)
33+
for pr in repo.get_pulls(
34+
head=f"{self.username}:{head}", base=base # noqa: E231
35+
)
3436
]
3537
if not pulls:
3638
return None

0 commit comments

Comments
 (0)