(self, sldIdLst: CT_SlideIdList, prs: Presentation)
| 245 | part: PresentationPart # pyright: ignore[reportIncompatibleMethodOverride] |
| 246 | |
| 247 | def __init__(self, sldIdLst: CT_SlideIdList, prs: Presentation): |
| 248 | super(Slides, self).__init__(sldIdLst, prs) |
| 249 | self._sldIdLst = sldIdLst |
| 250 | |
| 251 | def __getitem__(self, idx: int) -> Slide: |
| 252 | """Provide indexed access, (e.g. 'slides[0]').""" |