Skip to content

Commit 814d852

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b187b19 commit 814d852

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ogr/abstract.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)