(sr: SegmentRange, seg_idxs: list[int], fns: FileNames)
| 33 | |
| 34 | |
| 35 | def openpilotci_source(sr: SegmentRange, seg_idxs: list[int], fns: FileNames) -> dict[int, str]: |
| 36 | return eval_source({seg: [get_url(sr.route_name, seg, fn) for fn in fns] for seg in seg_idxs}) |
| 37 | |
| 38 | |
| 39 | def comma_car_segments_source(sr: SegmentRange, seg_idxs: list[int], fns: FileNames) -> dict[int, str]: |
nothing calls this directly
no test coverage detected