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

Method __init__

example_code/item_071.py:199–200  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

197print("Example 8")
198class ColumnPrinter:
199 def __init__(self):
200 self.columns = []
201
202 def append(self, data):
203 self.columns.append(data)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected