Add ProjectCard.edit() to the type stub (#2080)

The typing information for ProjectCard did not have edit().
Add it.
This commit is contained in:
Katelyn Gigante
2021-10-18 19:24:27 +11:00
committed by GitHub
parent b1c8eec58f
commit d417e4c408
+3
View File
@@ -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