mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
* 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
19 lines
522 B
Python
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: ...
|