mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 19:31:10 +00:00
Set line length to 120 characters (#2599)
This commit is contained in:
@@ -20,9 +20,7 @@ class Organization(CompletableGithubObject):
|
||||
def __repr__(self) -> str: ...
|
||||
def _initAttributes(self) -> None: ...
|
||||
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
|
||||
def add_to_members(
|
||||
self, member: NamedUser, role: Union[_NotSetType, str] = ...
|
||||
) -> None: ...
|
||||
def add_to_members(self, member: NamedUser, role: Union[_NotSetType, str] = ...) -> None: ...
|
||||
def add_to_public_members(self, public_member: NamedUser) -> None: ...
|
||||
@property
|
||||
def avatar_url(self) -> str: ...
|
||||
@@ -156,12 +154,8 @@ class Organization(CompletableGithubObject):
|
||||
) -> PaginatedList[NamedUser]: ...
|
||||
def get_migrations(self) -> PaginatedList[Migration]: ...
|
||||
def get_installations(self) -> PaginatedList[Installation]: ...
|
||||
def get_outside_collaborators(
|
||||
self, filter_: Union[str, _NotSetType] = ...
|
||||
) -> PaginatedList[NamedUser]: ...
|
||||
def get_projects(
|
||||
self, state: Union[_NotSetType, str] = ...
|
||||
) -> PaginatedList[Project]: ...
|
||||
def get_outside_collaborators(self, filter_: Union[str, _NotSetType] = ...) -> PaginatedList[NamedUser]: ...
|
||||
def get_projects(self, state: Union[_NotSetType, str] = ...) -> PaginatedList[Project]: ...
|
||||
def get_public_key(self) -> PublicKey: ...
|
||||
def get_public_members(self) -> PaginatedList[NamedUser]: ...
|
||||
def get_repo(self, name: str) -> Repository: ...
|
||||
|
||||
Reference in New Issue
Block a user