Files
PyGithub/github/Permissions.pyi
T
karsten-wagner 76879613fa Adding attributes "maintain" and "triage" to class "Permissions" (#1810)
* Adding attributes "maintain" and "triage" to class "github.Permissions.Permissions"

* Fix for failed test due to extended attribute list

* Adding new simplistic test case for class Permissions

Fixes #1809
2021-03-24 14:27:14 +11:00

19 lines
522 B
Python

from typing import Any, Dict
from github.GithubObject import NonCompletableGithubObject
class Permissions(NonCompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def admin(self) -> bool: ...
@property
def maintain(self) -> bool: ...
@property
def pull(self) -> bool: ...
@property
def push(self) -> bool: ...
@property
def triage(self) -> bool: ...