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

Method __init__

src/pptx/table.py:430–433  ·  view source on GitHub ↗
(self, tr: CT_TableRow, parent: _Row)

Source from the content-addressed store, hash-verified

428 """Horizontal sequence of row cells"""
429
430 def __init__(self, tr: CT_TableRow, parent: _Row):
431 super(_CellCollection, self).__init__(parent)
432 self._parent = parent
433 self._tr = tr
434
435 def __getitem__(self, idx: int) -> _Cell:
436 """Provides indexed access, (e.g. 'cells[0]')."""

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected