Add support for deleting reactions (#1708)

* Delete comment reactions

* Add test case

* update ignore-word-list

* Delete issue reactions

* Delete issue comment reactions

* Delete pull request comment reactions

* check status
This commit is contained in:
Huan-Cheng Chang
2020-10-26 16:40:46 +11:00
committed by GitHub
parent 3ec145f221
commit f7d203c083
17 changed files with 134 additions and 7 deletions
+1
View File
@@ -18,6 +18,7 @@ class PullRequestComment(CompletableGithubObject):
@property
def created_at(self) -> datetime: ...
def delete(self) -> None: ...
def delete_reaction(self, reaction_id: int) -> bool: ...
@property
def diff_hunk(self) -> str: ...
def edit(self, body: str) -> None: ...