Adding feature for enterprise consumed license (#2626)

Co-authored-by: Enrico Minack <github@enrico.minack.dev>
This commit is contained in:
YugoHino
2023-08-17 21:21:20 +02:00
committed by GitHub
co-authored by Enrico Minack
parent eadc241e07
commit a7bfdf2d65
13 changed files with 560 additions and 3 deletions
+2
View File
@@ -10,6 +10,7 @@ from github.Auth import Auth
from github.AuthenticatedUser import AuthenticatedUser
from github.Commit import Commit
from github.ContentFile import ContentFile
from github.Enterprise import Enterprise
from github.Event import Event
from github.Gist import Gist
from github.GithubApp import GithubApp
@@ -79,6 +80,7 @@ class Github:
def get_licenses(self) -> PaginatedList[License]: ...
def get_organization(self, login: str) -> Organization: ...
def get_organizations(self, since: Union[int, _NotSetType] = ...) -> PaginatedList[Organization]: ...
def get_enterprise(self, login: str) -> Enterprise: ...
def get_project(self, id: int) -> Project: ...
def get_project_column(self, id: int) -> ProjectColumn: ...
def get_rate_limit(self) -> RateLimit: ...