mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
13 lines
438 B
Python
13 lines
438 B
Python
import _plotly_utils.basevalidators
|
|
|
|
|
|
class TextValidator(_plotly_utils.basevalidators.StringValidator):
|
|
def __init__(self, plotly_name="text", parent_name="volume", **kwargs):
|
|
super(TextValidator, self).__init__(
|
|
plotly_name=plotly_name,
|
|
parent_name=parent_name,
|
|
array_ok=kwargs.pop("array_ok", True),
|
|
edit_type=kwargs.pop("edit_type", "calc"),
|
|
**kwargs,
|
|
)
|