(self, short_side_length: float, long_side_length: float)
| 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 | """ |