Check if running on Windows
(self)
| 37 | self.logger.info(f"BluetoothManager initialized for {self.os_type}") |
| 38 | |
| 39 | def _is_windows(self) -> bool: |
| 40 | """Check if running on Windows""" |
| 41 | return self.os_type == 'Windows' |
| 42 | |
| 43 | def _is_linux(self) -> bool: |
| 44 | """Check if running on Linux""" |
no outgoing calls
no test coverage detected