(self, sldLayoutIdLst: CT_SlideLayoutIdList, parent: SlideMaster)
| 350 | part: SlideMasterPart # pyright: ignore[reportIncompatibleMethodOverride] |
| 351 | |
| 352 | def __init__(self, sldLayoutIdLst: CT_SlideLayoutIdList, parent: SlideMaster): |
| 353 | super(SlideLayouts, self).__init__(sldLayoutIdLst, parent) |
| 354 | self._sldLayoutIdLst = sldLayoutIdLst |
| 355 | |
| 356 | def __getitem__(self, idx: int) -> SlideLayout: |
| 357 | """Provides indexed access, e.g. `slide_layouts[2]`.""" |