(ax, xy)
| 1434 | |
| 1435 | |
| 1436 | def polygon_remove_vertex(ax, xy): |
| 1437 | return [ |
| 1438 | MouseEvent._from_ax_coords("motion_notify_event", ax, xy), |
| 1439 | MouseEvent._from_ax_coords("button_press_event", ax, xy, 3), |
| 1440 | MouseEvent._from_ax_coords("button_release_event", ax, xy, 3), |
| 1441 | ] |
| 1442 | |
| 1443 | |
| 1444 | @pytest.mark.parametrize('draw_bounding_box', [False, True]) |
no test coverage detected
searching dependent graphs…