Set line length to 120 characters (#2599)

This commit is contained in:
Jirka Borovec
2023-07-13 17:37:20 +02:00
committed by GitHub
parent de80ff4b91
commit 13e178a3ab
192 changed files with 1455 additions and 4433 deletions
+3 -9
View File
@@ -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: ...