(self, client_id: str, client_secret: str)
| 1025 | return self.create_from_raw_data(*pickle.load(f)) |
| 1026 | |
| 1027 | def get_oauth_application(self, client_id: str, client_secret: str) -> ApplicationOAuth: |
| 1028 | return github.ApplicationOAuth.ApplicationOAuth( |
| 1029 | self.__requester, |
| 1030 | headers={}, |
| 1031 | attributes={"client_id": client_id, "client_secret": client_secret}, |
| 1032 | ) |
| 1033 | |
| 1034 | def get_app(self, slug: Opt[str] = NotSet) -> GithubApp: |
| 1035 | """ |
no outgoing calls
no test coverage detected