Return whether the upper limit is open ended.
(self)
| 1313 | return self.extend in ('both', minmax) |
| 1314 | |
| 1315 | def _extend_upper(self): |
| 1316 | """Return whether the upper limit is open ended.""" |
| 1317 | minmax = "min" if self.long_axis.get_inverted() else "max" |
| 1318 | return self.extend in ('both', minmax) |
| 1319 | |
| 1320 | def _short_axis(self): |
| 1321 | """Return the short axis""" |
no test coverage detected