Sets the end contour level value. Must be more than `contours.start` The 'end' property is a number and may be specified as: - An int or float Returns ------- int|float
(self)
| 46 | |
| 47 | @property |
| 48 | def end(self): |
| 49 | """ |
| 50 | Sets the end contour level value. Must be more than |
| 51 | `contours.start` |
| 52 | |
| 53 | The 'end' property is a number and may be specified as: |
| 54 | - An int or float |
| 55 | |
| 56 | Returns |
| 57 | ------- |
| 58 | int|float |
| 59 | """ |
| 60 | return self["end"] |
| 61 | |
| 62 | @end.setter |
| 63 | def end(self, val): |
no outgoing calls
no test coverage detected