(self, buffer=None)
| 1166 | __slots__ = "_model", |
| 1167 | |
| 1168 | def __init__(self, buffer=None): |
| 1169 | super().__init__(buffer) |
| 1170 | self._model = FinalModelOrder(self.buffer, 8) |
| 1171 | |
| 1172 | # Get the model type |
| 1173 | @property |
nothing calls this directly
no test coverage detected