Method
__init__
(
self,
plotly_name,
parent_name,
no_blank=False,
strict=False,
array_ok=False,
values=None,
**kwargs,
)
Source from the content-addressed store, hash-verified
| 995 | """ |
| 996 | |
| 997 | def __init__( |
| 998 | self, |
| 999 | plotly_name, |
| 1000 | parent_name, |
| 1001 | no_blank=False, |
| 1002 | strict=False, |
| 1003 | array_ok=False, |
| 1004 | values=None, |
| 1005 | **kwargs, |
| 1006 | ): |
| 1007 | super(StringValidator, self).__init__( |
| 1008 | plotly_name=plotly_name, parent_name=parent_name, **kwargs |
| 1009 | ) |
| 1010 | self.no_blank = no_blank |
| 1011 | self.strict = strict |
| 1012 | self.array_ok = array_ok |
| 1013 | self.values = values |
| 1014 | |
| 1015 | @staticmethod |
| 1016 | def to_str_or_unicode_or_none(v): |
Callers
nothing calls this directly
Tested by
no test coverage detected