(self, device_index)
| 402 | |
| 403 | @DeviceSpecV2.device_index.setter |
| 404 | def device_index(self, device_index): |
| 405 | self._device_index = _as_int_or_none(device_index) |
| 406 | self._as_string, self._hash = None, None |
| 407 | |
| 408 | def __hash__(self): |
| 409 | if self._hash is None: |
nothing calls this directly
no test coverage detected