(client: BaseClient[Any, Any])
| 55 | |
| 56 | |
| 57 | def _get_params(client: BaseClient[Any, Any]) -> dict[str, str]: |
| 58 | request = client._build_request(FinalRequestOptions(method="get", url="/foo")) |
| 59 | url = httpx.URL(request.url) |
| 60 | return dict(url.params) |
| 61 | |
| 62 | |
| 63 | def _low_retry_timeout(*_args: Any, **_kwargs: Any) -> float: |
no test coverage detected