MCPcopy Index your code
hub / github.com/dabeaz-course/python-mastery / row

Method row

Solutions/8_3/tableformat.py:52–54  ·  view source on GitHub ↗
(self, rowdata)

Source from the content-addressed store, hash-verified

50class ColumnFormatMixin:
51 formats = []
52 def row(self, rowdata):
53 rowdata = [ (fmt % item) for fmt, item in zip(self.formats, rowdata)]
54 super().row(rowdata)
55
56class UpperHeadersMixin:
57 def headings(self, headers):

Callers

nothing calls this directly

Calls 1

rowMethod · 0.45

Tested by

no test coverage detected