Compute the bounds of the object itself.
(self)
| 148 | ) |
| 149 | |
| 150 | def _get_self_bounds(self) -> List[List[Optional[float]]]: |
| 151 | """Compute the bounds of the object itself.""" |
| 152 | return get_bounds(self.locations) |
| 153 | |
| 154 | |
| 155 | class PolyLine(BaseMultiLocation): |
nothing calls this directly
no test coverage detected