Return |True| if *prs_part* is a valid main document part, |False| otherwise.
(prs_part: PresentationPart)
| 44 | |
| 45 | |
| 46 | def _is_pptx_package(prs_part: PresentationPart): |
| 47 | """Return |True| if *prs_part* is a valid main document part, |False| otherwise.""" |
| 48 | valid_content_types = (CT.PML_PRESENTATION_MAIN, CT.PML_PRES_MACRO_MAIN) |
| 49 | return prs_part.content_type in valid_content_types |
no outgoing calls
no test coverage detected
searching dependent graphs…