MCPcopy Create free account
hub / github.com/scanny/python-pptx / __init__

Method __init__

src/pptx/table.py:478–481  ·  view source on GitHub ↗
(self, tbl: CT_Table, parent: Table)

Source from the content-addressed store, hash-verified

476 """Sequence of table rows"""
477
478 def __init__(self, tbl: CT_Table, parent: Table):
479 super(_RowCollection, self).__init__(parent)
480 self._parent = parent
481 self._tbl = tbl
482
483 def __getitem__(self, idx: int) -> _Row:
484 """Provides indexed access, (e.g. 'rows[0]')."""

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected