(self)
| 1619 | return () |
| 1620 | |
| 1621 | def to_string(self): |
| 1622 | ty = self.type |
| 1623 | return (f"{self.name} of type {ty}, " |
| 1624 | f"{self._format_contents()}") |
| 1625 | |
| 1626 | |
| 1627 | class NumericArrayDataPrinter(ArrayDataPrinter): |
nothing calls this directly
no test coverage detected