If *value* is not already a number or sequence of numbers, convert it with `date2num`. The *unit* and *axis* arguments are not used.
(value, unit, axis)
| 1757 | |
| 1758 | @staticmethod |
| 1759 | def convert(value, unit, axis): |
| 1760 | """ |
| 1761 | If *value* is not already a number or sequence of numbers, convert it |
| 1762 | with `date2num`. |
| 1763 | |
| 1764 | The *unit* and *axis* arguments are not used. |
| 1765 | """ |
| 1766 | return date2num(value) |
| 1767 | |
| 1768 | @staticmethod |
| 1769 | def default_units(x, axis): |
no test coverage detected