Skip to content

Commit

Permalink
Add get_timeline() to Issue's type stubs (#1663)
Browse files Browse the repository at this point in the history
Add get_timeline() to Issue's type stubs
  • Loading branch information
spladug committed Aug 28, 2020
1 parent 743f5a5 commit 6bc9ecc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions github/Issue.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ from github.PaginatedList import PaginatedList
from github.PullRequest import PullRequest
from github.Reaction import Reaction
from github.Repository import Repository
from github.TimelineEvent import TimelineEvent

class Issue(CompletableGithubObject):
def __repr__(self) -> str: ...
Expand Down Expand Up @@ -40,6 +41,7 @@ class Issue(CompletableGithubObject):
def comments_url(self) -> str: ...
def create_comment(self, body: str) -> IssueComment: ...
def create_reaction(self, reaction_type: str) -> Reaction: ...
def get_timeline(self) -> PaginatedList[TimelineEvent]: ...
@property
def created_at(self) -> datetime: ...
def delete_labels(self) -> None: ...
Expand Down

0 comments on commit 6bc9ecc

Please sign in to comment.