(value: Any)
| 80 | |
| 81 | |
| 82 | def _to_timestamp(value: Any) -> float: |
| 83 | dt = _to_utc_datetime(value) |
| 84 | if dt is None: |
| 85 | return 0.0 |
| 86 | return float(dt.timestamp()) |
| 87 | |
| 88 | |
| 89 | async def _probe_remote_browser_health(base_url: str, timeout_seconds: float = 3.0) -> tuple[bool, float]: |
no test coverage detected