mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
* Add initial support for Check Suites * Add API call detail in CheckSuite.rerequest * Update Accept header with general instead of preview * Add 'get check runs' endpoint for CheckSuite with stubs * Add create check suite endpoint with stub * Update CheckSuite tests with creat check suite endpoint * Add update check suites preferences endpoint * Add repository preferences object and stub file * Add update check suite preferences tests Needed for #1621 Co-authored-by: Raju Subramanian <coder@mahesh.net>
13 lines
465 B
Python
13 lines
465 B
Python
from typing import Any, Dict, List, Union
|
|
|
|
from github.GithubObject import NonCompletableGithubObject
|
|
from github.Repository import Repository
|
|
|
|
class RepositoryPreferences(NonCompletableGithubObject):
|
|
def _initAttributes(self) -> None: ...
|
|
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
|
|
@property
|
|
def preferences(self) -> Dict[str, List[Dict[str, Union[bool, int]]]]: ...
|
|
@property
|
|
def repository(self) -> Repository: ...
|