MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / __init__

Method __init__

geometry/geometry.py:241–245  ·  view source on GitHub ↗
(self, short_side_length: float, long_side_length: float)

Source from the content-addressed store, hash-verified

239 """
240
241 def __init__(self, short_side_length: float, long_side_length: float) -> None:
242 super().__init__()
243 self.short_side_length = short_side_length
244 self.long_side_length = long_side_length
245 self.post_init()
246
247 def post_init(self) -> None:
248 """

Callers

nothing calls this directly

Calls 2

post_initMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected