(self)
| 251 | self._ys = ys |
| 252 | |
| 253 | def __repr__(self): |
| 254 | return """\ |
| 255 | LassoSelector(xs={xs}, |
| 256 | ys={ys})""".format( |
| 257 | xs=_list_repr_elided(self.xs, indent=len("LassoSelector(xs=")), |
| 258 | ys=_list_repr_elided(self.ys, indent=len(" ys=")), |
| 259 | ) |
| 260 | |
| 261 | @property |
| 262 | def type(self): |
nothing calls this directly
no test coverage detected