From d514222cb138491f646dacb607d1998592279ed8 Mon Sep 17 00:00:00 2001 From: Giulia Vergottini Date: Wed, 21 Jun 2023 21:11:04 +0200 Subject: [PATCH] Add type stub for MainClass.get_project_column (#2502) Co-Authored: Attila Dulovics --- github/MainClass.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/github/MainClass.pyi b/github/MainClass.pyi index 5d0e4951..e25790e5 100644 --- a/github/MainClass.pyi +++ b/github/MainClass.pyi @@ -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 = ...