Skip to content

Commit 40ecb09

Browse files
committed
Fix the lint issue
1 parent f570302 commit 40ecb09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/update_checkout/update_checkout/update_checkout.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -701,9 +701,9 @@ def main():
701701
cross_repos_pr = {}
702702
if github_comment:
703703
regex_pr = r'(apple/[-a-zA-Z0-9_]+/pull/\d+'\
704-
'|apple/[-a-zA-Z0-9_]+#\d+'\
705-
'|swiftlang/[-a-zA-Z0-9_]+/pull/\d+'\
706-
'|swiftlang/[-a-zA-Z0-9_]+#\d+)'
704+
r'|apple/[-a-zA-Z0-9_]+#\d+'\
705+
r'|swiftlang/[-a-zA-Z0-9_]+/pull/\d+'\
706+
r'|swiftlang/[-a-zA-Z0-9_]+#\d+)'
707707
repos_with_pr = re.findall(regex_pr, github_comment)
708708
print("Found related pull requests:", str(repos_with_pr))
709709
repos_with_pr = [pr.replace('/pull/', '#') for pr in repos_with_pr]

0 commit comments

Comments
 (0)