mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 11:21:16 +00:00
Set line length to 120 characters (#2599)
This commit is contained in:
@@ -49,9 +49,7 @@ class PullRequest(CompletableGithubObject):
|
||||
def commits(self) -> int: ...
|
||||
@property
|
||||
def commits_url(self) -> str: ...
|
||||
def create_comment(
|
||||
self, body: str, commit_id: Commit, path: str, position: int
|
||||
) -> PullRequestComment: ...
|
||||
def create_comment(self, body: str, commit_id: Commit, path: str, position: int) -> PullRequestComment: ...
|
||||
def create_issue_comment(self, body: str) -> IssueComment: ...
|
||||
def create_review(
|
||||
self,
|
||||
@@ -60,9 +58,7 @@ class PullRequest(CompletableGithubObject):
|
||||
event: Union[_NotSetType, str] = ...,
|
||||
comments: Union[_NotSetType, str] = ...,
|
||||
) -> PullRequestReview: ...
|
||||
def create_review_comment(
|
||||
self, body: str, commit_id: Commit, path: str, position: int
|
||||
) -> PullRequestComment: ...
|
||||
def create_review_comment(self, body: str, commit_id: Commit, path: str, position: int) -> PullRequestComment: ...
|
||||
def create_review_request(
|
||||
self,
|
||||
reviewers: Union[_NotSetType, List[str]] = ...,
|
||||
@@ -110,9 +106,7 @@ class PullRequest(CompletableGithubObject):
|
||||
direction: Union[_NotSetType, str] = ...,
|
||||
since: Union[_NotSetType, datetime] = ...,
|
||||
) -> PaginatedList[PullRequestComment]: ...
|
||||
def get_single_review_comments(
|
||||
self, id: int
|
||||
) -> PaginatedList[PullRequestComment]: ...
|
||||
def get_single_review_comments(self, id: int) -> PaginatedList[PullRequestComment]: ...
|
||||
def get_review_requests(
|
||||
self,
|
||||
) -> Tuple[PaginatedList[NamedUser], PaginatedList[Team]]: ...
|
||||
|
||||
Reference in New Issue
Block a user