MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / __init__

Method __init__

example_code/item_073.py:206–207  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

204
205class ColumnPrinter:
206 def __init__(self):
207 self.columns = []
208
209 def append(self, data):
210 self.columns.append(data)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected