(client: BaseClient[Any, Any])
| 44 | |
| 45 | |
| 46 | def _get_params(client: BaseClient[Any, Any]) -> dict[str, str]: |
| 47 | request = client._build_request(FinalRequestOptions(method="get", url="/foo")) |
| 48 | url = httpx.URL(request.url) |
| 49 | return dict(url.params) |
| 50 | |
| 51 | |
| 52 | def _low_retry_timeout(*_args: Any, **_kwargs: Any) -> float: |
no test coverage detected