mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
Fix #1731: Incorrect annotation
This commit is contained in:
@@ -61,16 +61,16 @@ class PullRequest(CompletableGithubObject):
|
||||
) -> PullRequestComment: ...
|
||||
def create_review_request(
|
||||
self,
|
||||
reviewers: Union[_NotSetType, str] = ...,
|
||||
team_reviewers: Union[_NotSetType, str] = ...,
|
||||
reviewers: Union[_NotSetType, List[str]] = ...,
|
||||
team_reviewers: Union[_NotSetType, List[str]] = ...,
|
||||
) -> None: ...
|
||||
@property
|
||||
def created_at(self) -> datetime: ...
|
||||
def delete_labels(self) -> None: ...
|
||||
def delete_review_request(
|
||||
self,
|
||||
reviewers: Union[_NotSetType, str] = ...,
|
||||
team_reviewers: Union[_NotSetType, str] = ...,
|
||||
reviewers: Union[_NotSetType, List[str]] = ...,
|
||||
team_reviewers: Union[_NotSetType, List[str]] = ...,
|
||||
) -> None: ...
|
||||
@property
|
||||
def deletions(self) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user