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

Class EvenBetterPoint2D

example_code/item_063.py:135–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133
134print("Example 7")
135class EvenBetterPoint2D(BetterSerializable):
136 def __init__(self, x, y):
137 super().__init__(x, y)
138 self.x = x
139 self.y = y
140
141register_class(EvenBetterPoint2D)
142

Callers 1

item_063.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected