Method
__init__
(
self,
requester: Requester,
headers: dict[str, str | int],
attributes: dict[str, Any],
)
Source from the content-addressed store, hash-verified
| 513 | |
| 514 | class NonCompletableGithubObject(GithubObject, ABC): |
| 515 | def __init__( |
| 516 | self, |
| 517 | requester: Requester, |
| 518 | headers: dict[str, str | int], |
| 519 | attributes: dict[str, Any], |
| 520 | ): |
| 521 | super().__init__(requester, headers, attributes) |
| 522 | |
| 523 | |
| 524 | class CompletableGithubObject(GithubObject, ABC): |
Callers
nothing calls this directly
Tested by
no test coverage detected