(self, buffer=None)
| 1045 | __slots__ = "_model", |
| 1046 | |
| 1047 | def __init__(self, buffer=None): |
| 1048 | super().__init__(buffer) |
| 1049 | self._model = FinalModelOrder(self.buffer, 8) |
| 1050 | |
| 1051 | # Get the model type |
| 1052 | @property |
nothing calls this directly
no test coverage detected