(proxy_url: str)
| 238 | |
| 239 | |
| 240 | def _build_proxy_map(proxy_url: str) -> Optional[Dict[str, str]]: |
| 241 | normalized = (proxy_url or "").strip() |
| 242 | if not normalized: |
| 243 | return None |
| 244 | return {"http": normalized, "https": normalized} |
| 245 | |
| 246 | |
| 247 | def _normalize_http_base_url(base_url: str) -> str: |
no outgoing calls
no test coverage detected