Skip to content

Commit 19e46bb

Browse files
Remove older MainClass.get_installation() (PyGithub#1738)
There are two get_installation() methods in MainClass, with different arguments. get_installation(owner, repo) is documented and tested, and get_installation(id) is neither. Remove it to avoid confusion.
1 parent 4cfc991 commit 19e46bb

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

github/MainClass.py

-10
Original file line numberDiff line numberDiff line change
@@ -785,16 +785,6 @@ def load(self, f):
785785
"""
786786
return self.create_from_raw_data(*pickle.load(f))
787787

788-
def get_installation(self, id):
789-
"""
790-
791-
:param id:
792-
:return:
793-
"""
794-
return Installation.Installation(
795-
self.__requester, headers={}, attributes={"id": id}, completed=True
796-
)
797-
798788
def get_oauth_application(self, client_id, client_secret):
799789
return github.ApplicationOAuth.ApplicationOAuth(
800790
self.__requester,

0 commit comments

Comments
 (0)