1import _plotly_utils.basevalidators
2
3
4class HovertemplatesrcValidator(_plotly_utils.basevalidators.SrcValidator):
5    def __init__(self, plotly_name="hovertemplatesrc", parent_name="bar", **kwargs):
6        super(HovertemplatesrcValidator, self).__init__(
7            plotly_name=plotly_name,
8            parent_name=parent_name,
9            edit_type=kwargs.pop("edit_type", "none"),
10            role=kwargs.pop("role", "info"),
11            **kwargs
12        )
13