( # type: ignore[override]
self,
url: httpx._types.URLTypes,
*,
content: httpx._types.RequestContent | None = None,
data: _RequestData | None = None,
files: httpx._types.RequestFiles | None = None,
json: Any = None,
params: httpx._types.QueryParamTypes | None = None,
headers: httpx._types.HeaderTypes | None = None,
cookies: httpx._types.CookieTypes | None = None,
auth: httpx._types.AuthTypes | httpx._client.UseClientDefault = httpx._client.USE_CLIENT_DEFAULT,
follow_redirects: bool | httpx._client.UseClientDefault = httpx._client.USE_CLIENT_DEFAULT,
timeout: httpx._types.TimeoutTypes | httpx._client.UseClientDefault = httpx._client.USE_CLIENT_DEFAULT,
extensions: dict[str, Any] | None = None,
)
| 599 | ) |
| 600 | |
| 601 | def patch( # type: ignore[override] |
| 602 | self, |
| 603 | url: httpx._types.URLTypes, |
| 604 | *, |
| 605 | content: httpx._types.RequestContent | None = None, |
| 606 | data: _RequestData | None = None, |
| 607 | files: httpx._types.RequestFiles | None = None, |
| 608 | json: Any = None, |
| 609 | params: httpx._types.QueryParamTypes | None = None, |
| 610 | headers: httpx._types.HeaderTypes | None = None, |
| 611 | cookies: httpx._types.CookieTypes | None = None, |
| 612 | auth: httpx._types.AuthTypes | httpx._client.UseClientDefault = httpx._client.USE_CLIENT_DEFAULT, |
| 613 | follow_redirects: bool | httpx._client.UseClientDefault = httpx._client.USE_CLIENT_DEFAULT, |
| 614 | timeout: httpx._types.TimeoutTypes | httpx._client.UseClientDefault = httpx._client.USE_CLIENT_DEFAULT, |
| 615 | extensions: dict[str, Any] | None = None, |
| 616 | ) -> httpx.Response: |
| 617 | return super().patch( |
| 618 | url, |
| 619 | content=content, |
| 620 | data=data, |
| 621 | files=files, |
| 622 | json=json, |
| 623 | params=params, |
| 624 | headers=headers, |
| 625 | cookies=cookies, |
| 626 | auth=auth, |
| 627 | follow_redirects=follow_redirects, |
| 628 | timeout=timeout, |
| 629 | extensions=extensions, |
| 630 | ) |
| 631 | |
| 632 | def delete( # type: ignore[override] |
| 633 | self, |
no outgoing calls
no test coverage detected