Method
patch
(
self,
path: str,
*,
cast_to: Type[ResponseT],
body: Body | None = None,
options: RequestOptions = {},
)
Source from the content-addressed store, hash-verified
| 1762 | return await self.request(cast_to, opts, stream=stream, stream_cls=stream_cls) |
| 1763 | |
| 1764 | async def patch( |
| 1765 | self, |
| 1766 | path: str, |
| 1767 | *, |
| 1768 | cast_to: Type[ResponseT], |
| 1769 | body: Body | None = None, |
| 1770 | options: RequestOptions = {}, |
| 1771 | ) -> ResponseT: |
| 1772 | opts = FinalRequestOptions.construct(method="patch", url=path, json_data=body, **options) |
| 1773 | return await self.request(cast_to, opts) |
| 1774 | |
| 1775 | async def put( |
| 1776 | self, |
Callers
nothing calls this directly
Tested by
no test coverage detected