(self)
| 645 | self.array_ok = array_ok |
| 646 | |
| 647 | def description(self): |
| 648 | desc = """\ |
| 649 | The '{plotly_name}' property is a boolean and must be specified as: |
| 650 | - A boolean value: True or False""".format(plotly_name=self.plotly_name) |
| 651 | if self.array_ok: |
| 652 | desc += """ |
| 653 | - A tuple or list of the above""" |
| 654 | return desc |
| 655 | |
| 656 | def validate_coerce(self, v): |
| 657 | if is_none_or_typed_array_spec(v): |