1import _plotly_utils.basevalidators
2
3
4class SelectedpointsValidator(_plotly_utils.basevalidators.AnyValidator):
5    def __init__(self, plotly_name="selectedpoints", parent_name="histogram", **kwargs):
6        super(SelectedpointsValidator, self).__init__(
7            plotly_name=plotly_name,
8            parent_name=parent_name,
9            edit_type=kwargs.pop("edit_type", "calc"),
10            role=kwargs.pop("role", "info"),
11            **kwargs
12        )
13