MCPcopy Create free account
hub / github.com/Breakthrough/PySceneDetect / __init__

Method __init__

scenedetect/_thirdparty/simpletable.py:73–81  ·  view source on GitHub ↗

Table cell constructor. Keyword arguments: text -- text to be displayed header -- flag to indicate this cell is a header cell.

(self, text, header=False)

Source from the content-addressed store, hash-verified

71 """
72
73 def __init__(self, text, header=False):
74 """Table cell constructor.
75
76 Keyword arguments:
77 text -- text to be displayed
78 header -- flag to indicate this cell is a header cell.
79 """
80 self.text = text
81 self.header = header
82
83 def __str__(self):
84 """Return the HTML code for the table cell."""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected