Skip to content

Commit d2941da

Browse files
committed
Fix formatting
1 parent b5d36be commit d2941da

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ def get_num_commits(gh: github.Github, user: str, start_date: datetime.datetime)
151151
}
152152
"""
153153
count = 0
154-
res_header, d = gh._Github__requester.graphql_query(query=query, variables=variables)
154+
res_header, d = gh._Github__requester.graphql_query(
155+
query=query, variables=variables
156+
)
155157
data = d["data"]
156158
for repo in data["organization"]["teams"]["nodes"][0]["repositories"]["nodes"]:
157159
count += int(repo["ref"]["target"]["history"]["totalCount"])
@@ -179,7 +181,9 @@ def is_new_committer_query_repo(
179181
}
180182
"""
181183

182-
res_header, d = gh._Github__requester.graphql_query(query=user_query, variables=variables)
184+
res_header, d = gh._Github__requester.graphql_query(
185+
query=user_query, variables=variables
186+
)
183187
data = d["data"]
184188
variables["owner"] = "llvm"
185189
variables["user_id"] = data["user"]["id"]
@@ -205,7 +209,9 @@ def is_new_committer_query_repo(
205209
}
206210
"""
207211

208-
res_header, d = gh._Github__requester.graphql_query(query=query, variables=variables)
212+
res_header, d = gh._Github__requester.graphql_query(
213+
query=query, variables=variables
214+
)
209215
data = d["data"]
210216
repo = data["organization"]["repository"]
211217
commits = repo["ref"]["target"]["history"]["nodes"]

0 commit comments

Comments
 (0)