From 1782542a4b8d2c3c35afb94b9c6a7c3a1e365dfe Mon Sep 17 00:00:00 2001 From: Katelyn Gigante Date: Mon, 18 Oct 2021 17:04:23 +1100 Subject: [PATCH] Add ProjectCard.edit() to the type stub --- github/ProjectCard.pyi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/github/ProjectCard.pyi b/github/ProjectCard.pyi index 9aaaf8db0c..e1644ea8a7 100644 --- a/github/ProjectCard.pyi +++ b/github/ProjectCard.pyi @@ -23,6 +23,9 @@ class ProjectCard(CompletableGithubObject): def get_content( self, content_type: Union[_NotSetType, str] = ... ) -> Optional[Union[PullRequest, Issue]]: ... + def edit( + self, note=Union[_NotSetType, str], archived=Union[_NotSetType, bool] + ) -> None: ... @property def id(self) -> int: ... @property