(sections: list[dict[str, Any]], page_number: int)
| 208 | |
| 209 | |
| 210 | def primary_section_for_page(sections: list[dict[str, Any]], page_number: int) -> str: |
| 211 | ids = section_ids_for_page(sections, page_number) |
| 212 | return ids[0] if ids else "" |
| 213 | |
| 214 | |
| 215 | def caption_manifest( |
no test coverage detected