Skip to content

Commit a14742e

Browse files
committed
Fix formatting
1 parent 61e4972 commit a14742e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def check_manual_requests(
103103
data = res_data["data"]
104104
for issue in data["search"]["nodes"]:
105105
users.extend([user[1:] for user in re.findall("@[^ ,\n]+", issue["body"])])
106-
if issue['author']:
106+
if issue["author"]:
107107
users.append(issue["author"]["login"])
108108
has_next_page = data["search"]["pageInfo"]["hasNextPage"]
109109
if has_next_page:

0 commit comments

Comments
 (0)