Method
__init__
(
self,
requester: Requester,
headers: dict[str, Any],
attributes: Any,
)
Source from the content-addressed store, hash-verified
| 55 | """ |
| 56 | |
| 57 | def __init__( |
| 58 | self, |
| 59 | requester: Requester, |
| 60 | headers: dict[str, Any], |
| 61 | attributes: Any, |
| 62 | ) -> None: |
| 63 | # this object requires a request without authentication |
| 64 | requester = requester.withAuth(auth=None) |
| 65 | super().__init__(requester, headers, attributes) |
| 66 | |
| 67 | def _initAttributes(self) -> None: |
| 68 | self._client_id: Attribute[str] = NotSet |
Callers
nothing calls this directly
Tested by
no test coverage detected