Add type stub for MainClass.get_project_column (#2502)

Co-Authored: Attila Dulovics <dulovicsattila@gmail.com>
This commit is contained in:
Giulia Vergottini
2023-06-21 21:11:04 +02:00
committed by GitHub
parent ea45237d3b
commit d514222cb1
+2
View File
@@ -19,6 +19,7 @@ from github.NamedUser import NamedUser
from github.Organization import Organization
from github.PaginatedList import PaginatedList
from github.Project import Project
from github.ProjectColumn import ProjectColumn
from github.RateLimit import RateLimit
from github.Repository import Repository
from github.Topic import Topic
@@ -75,6 +76,7 @@ class Github:
self, since: Union[int, _NotSetType] = ...
) -> PaginatedList[Organization]: ...
def get_project(self, id: int) -> Project: ...
def get_project_column(self, id: int) -> ProjectColumn: ...
def get_rate_limit(self) -> RateLimit: ...
def get_repo(
self, full_name_or_id: Union[int, str], lazy: bool = ...