mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
Format with new black (#1679)
Black is very opinionated, but sometimes those opinions change. Run the new black version across the codebase, and lock down the version used by pre-commit so we don't get surprised like this again.
This commit is contained in:
@@ -713,7 +713,8 @@ class PullRequest(github.GithubObject.CompletableGithubObject):
|
||||
"""
|
||||
assert isinstance(id, int), id
|
||||
headers, data = self._requester.requestJsonAndCheck(
|
||||
"GET", self.url + "/reviews/" + str(id),
|
||||
"GET",
|
||||
self.url + "/reviews/" + str(id),
|
||||
)
|
||||
return github.PullRequestReview.PullRequestReview(
|
||||
self._requester, headers, data, completed=True
|
||||
|
||||
Reference in New Issue
Block a user