(self, buffer=None)
| 1586 | __slots__ = "_model", |
| 1587 | |
| 1588 | def __init__(self, buffer=None): |
| 1589 | super().__init__(buffer) |
| 1590 | self._model = FinalModelBalance(self.buffer, 8) |
| 1591 | |
| 1592 | # Get the model type |
| 1593 | @property |
nothing calls this directly
no test coverage detected