```python >>> Axis([0, "a"], "value") Axis(['0', 'a'], 'value') ``` The only workaround I know is to force the dtype at the numpy level: ```python >>> Axis(np.array([0, "a"], dtype=object), "value") Axis([0, 'a'], 'value') ```