(self, sldMasterIdLst: CT_SlideMasterIdList, parent: Presentation)
| 435 | part: PresentationPart # pyright: ignore[reportIncompatibleMethodOverride] |
| 436 | |
| 437 | def __init__(self, sldMasterIdLst: CT_SlideMasterIdList, parent: Presentation): |
| 438 | super(SlideMasters, self).__init__(sldMasterIdLst, parent) |
| 439 | self._sldMasterIdLst = sldMasterIdLst |
| 440 | |
| 441 | def __getitem__(self, idx: int) -> SlideMaster: |
| 442 | """Provides indexed access, e.g. `slide_masters[2]`.""" |