(self)
| 2564 | return IndexVariable(*args, **kwargs) |
| 2565 | |
| 2566 | def test_init(self): |
| 2567 | with pytest.raises(ValueError, match=r"must be 1-dimensional"): |
| 2568 | IndexVariable((), 0) |
| 2569 | |
| 2570 | def test_to_index(self): |
| 2571 | data = 0.5 * np.arange(10) |
nothing calls this directly
no test coverage detected