Skip to content

Commit 61e4972

Browse files
committed
Fix formatting
1 parent 2d23234 commit 61e4972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/commit-access-review.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def check_manual_requests(
9191
"""
9292
formatted_start_date = start_date.strftime("%Y-%m-%dT%H:%M:%S")
9393
variables = {
94-
"query": f"type:issue created:>{formatted_start_date} org:llvm repo:llvm-project label:infra:commit-access,infra:commit-access-request"
94+
"query": f"type:issue created:>{formatted_start_date} org:llvm repo:llvm-project label:infra:commit-access,infra:commit-access-request"
9595
}
9696

9797
has_next_page = True
@@ -104,7 +104,7 @@ def check_manual_requests(
104104
for issue in data["search"]["nodes"]:
105105
users.extend([user[1:] for user in re.findall("@[^ ,\n]+", issue["body"])])
106106
if issue['author']:
107-
users.append(issue['author']['login'])
107+
users.append(issue["author"]["login"])
108108
has_next_page = data["search"]["pageInfo"]["hasNextPage"]
109109
if has_next_page:
110110
variables["after"] = data["search"]["pageInfo"]["endCursor"]

0 commit comments

Comments
 (0)