(self, buffer=None)
| 1703 | __slots__ = "_model", |
| 1704 | |
| 1705 | def __init__(self, buffer=None): |
| 1706 | super().__init__(buffer) |
| 1707 | self._model = FinalModelBalance(self.buffer, 8) |
| 1708 | |
| 1709 | # Get the model type |
| 1710 | @property |
nothing calls this directly
no test coverage detected