(self)
| 164 | |
| 165 | @property |
| 166 | def path(self) -> str: |
| 167 | if self._is_device: |
| 168 | assert isinstance(self._path_or_device, int) |
| 169 | return f"Device {self._path_or_device}" |
| 170 | assert isinstance(self._path_or_device, str) |
| 171 | return self._path_or_device |
| 172 | |
| 173 | @property |
| 174 | def name(self) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected