TDC output needed by cap_union_new_verify.
| 21 | |
| 22 | DEFAULT_USER_AGENT = ( |
| 23 | "Mozilla/5.0 (Windows NT 10.0; Win64; x64) " |
| 24 | "AppleWebKit/537.36 (KHTML, like Gecko) " |
| 25 | "Chrome/124.0.0.0 Safari/537.36" |
| 26 | ) |
| 27 | |
| 28 | |
| 29 | @dataclass(frozen=True) |
| 30 | class TdcCollectResult: |
| 31 | """TDC output needed by cap_union_new_verify.""" |
| 32 | |
| 33 | collect_raw: str |
| 34 | collect: str |
| 35 | tlg: int |
| 36 | eks: str |
| 37 | tokenid: str |
| 38 | info: dict[str, Any] |
| 39 | tdc_path: str |
no outgoing calls
no test coverage detected