(self, url: str, max_retries: int = SSRF_DEFAULT_MAX_RETRIES, **kwargs: Any)
| 318 | return _to_graphon_http_response(delete(url=url, max_retries=max_retries, **kwargs)) |
| 319 | |
| 320 | def patch(self, url: str, max_retries: int = SSRF_DEFAULT_MAX_RETRIES, **kwargs: Any) -> HttpResponse: |
| 321 | return _to_graphon_http_response(patch(url=url, max_retries=max_retries, **kwargs)) |
| 322 | |
| 323 | |
| 324 | ssrf_proxy = SSRFProxy() |
nothing calls this directly
no test coverage detected