(self, shared_data)
| 1525 | """ |
| 1526 | |
| 1527 | def __init__(self, shared_data): |
| 1528 | self.shared_data = shared_data |
| 1529 | self.action_name = "BLE" |
| 1530 | self.port = 0 # Standalone action |
| 1531 | self.b_parent_action = None |
| 1532 | self.logger = logging.getLogger(__name__) |
| 1533 | self.bt_manager = BluetoothManager(self.logger) |
| 1534 | |
| 1535 | def execute(self): |
| 1536 | """ |
nothing calls this directly
no test coverage detected