MCPcopy Index your code
hub / github.com/SourceCode-AI/aura / asdict

Method asdict

aura/output/table.py:95–102  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

93 return max(sum(self.col_len)+3, title_width)
94
95 def asdict(self) -> dict:
96 d = {"rows": [
97 [c.asdict() for c in row] for row in self.rows
98 ]}
99 if self.metadata:
100 d["metadata"] = self.metadata
101
102 return d
103
104 def pprint(self, preport=None):
105 from .text import PrettyReport

Callers 3

json_encoderFunction · 0.45
get_score_matrixMethod · 0.45
output_diffMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected