MCPcopy Create free account
hub / github.com/chatdoc-com/OCRFlux / __init__

Method __init__

eval/eval_table_to_html.py:14–19  ·  view source on GitHub ↗
(self, tag, colspan=None, rowspan=None, content=None, *children)

Source from the content-addressed store, hash-verified

12
13class TableTree(Tree):
14 def __init__(self, tag, colspan=None, rowspan=None, content=None, *children):
15 self.tag = tag
16 self.colspan = colspan
17 self.rowspan = rowspan
18 self.content = content
19 self.children = list(children)
20
21 def bracket(self):
22 """Show tree using brackets notation"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected