Compute the bounds of the object itself.
(self)
| 290 | ) |
| 291 | |
| 292 | def _get_self_bounds(self) -> List[List[Optional[float]]]: |
| 293 | """Compute the bounds of the object itself.""" |
| 294 | return get_bounds(self.locations) |
| 295 | |
| 296 | |
| 297 | class Circle(Marker): |
nothing calls this directly
no test coverage detected