(self)
| 103 | |
| 104 | @property |
| 105 | def polygons(self): |
| 106 | if self._polygons is None: |
| 107 | self._polygons, self._has_holes = self.mask_to_polygons(self._mask) |
| 108 | return self._polygons |
| 109 | |
| 110 | @property |
| 111 | def has_holes(self): |
nothing calls this directly
no test coverage detected