Skip to content

Commit

Permalink
Add ProjectCard.edit() to the type stub (#2080)
Browse files Browse the repository at this point in the history
The typing information for ProjectCard did not have edit().
Add it.
  • Loading branch information
silasary committed Oct 18, 2021
1 parent b1c8eec commit d417e4c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions github/ProjectCard.pyi
Expand Up @@ -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
Expand Down

0 comments on commit d417e4c

Please sign in to comment.