File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -476,7 +476,7 @@ def get_comments(
476476 List of issue comments.
477477 """
478478 raise NotImplementedError ()
479-
479+
480480 def who_can_close () -> set [str ]:
481481 """
482482 Returns:
@@ -895,28 +895,28 @@ def close(self) -> "PullRequest":
895895 Pull request itself.
896896 """
897897 raise NotImplementedError ()
898-
898+
899899 def who_can_close () -> set [str ]:
900900 """
901901 Returns:
902902 Set of usernames who can close the pull request.
903903 """
904904 raise NotImplementedError ()
905-
905+
906906 def who_can_merge () -> set [str ]:
907907 """
908908 Returns:
909909 Set of usernames who can merge the pull request.
910910 """
911911 raise NotImplementedError ()
912-
912+
913913 def can_close (self , username : str ) -> bool :
914914 """
915915 Returns:
916916 `True` if user can close the pull request, `False` otherwise.
917917 """
918918 raise NotImplementedError ()
919-
919+
920920 def can_merge (self , username : str ) -> bool :
921921 """
922922 Returns:
@@ -1570,7 +1570,7 @@ def who_can_close_issue(self) -> set[str]:
15701570 Names of all users who have permission to modify an issue.
15711571 """
15721572 raise NotImplementedError ()
1573-
1573+
15741574 def can_close_issue (username : str ) -> bool :
15751575 """
15761576 Args:
You can’t perform that action at this time.
0 commit comments