(self)
| 1656 | class ModelOutputBase(list): |
| 1657 | |
| 1658 | def __post_init__(self): |
| 1659 | self.reconstruct() |
| 1660 | self.post_init = True |
| 1661 | |
| 1662 | def reconstruct(self): |
| 1663 | # Low performance, but low frequency. |
nothing calls this directly
no test coverage detected