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

Method __str__

scenedetect/_thirdparty/simpletable.py:161–172  ·  view source on GitHub ↗

Return the HTML code for the table row and its cells as a string.

(self)

Source from the content-addressed store, hash-verified

159 self.header = header
160
161 def __str__(self):
162 """Return the HTML code for the table row and its cells as a string."""
163 row = []
164
165 row.append("<tr>")
166
167 for cell in self.cells:
168 row.append(str(cell))
169
170 row.append("</tr>")
171
172 return "\n".join(row)
173
174 def __iter__(self):
175 """Iterate through row cells"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected