Method
__init__
(
self, plotly_name, parent_name, flags, extras=None, array_ok=False, **kwargs
)
Source from the content-addressed store, hash-verified
| 1840 | """ |
| 1841 | |
| 1842 | def __init__( |
| 1843 | self, plotly_name, parent_name, flags, extras=None, array_ok=False, **kwargs |
| 1844 | ): |
| 1845 | super(FlaglistValidator, self).__init__( |
| 1846 | plotly_name=plotly_name, parent_name=parent_name, **kwargs |
| 1847 | ) |
| 1848 | self.flags = flags |
| 1849 | self.extras = extras if extras is not None else [] |
| 1850 | self.array_ok = array_ok |
| 1851 | |
| 1852 | def description(self): |
| 1853 | desc = ( |
Callers
nothing calls this directly
Tested by
no test coverage detected