Skip to content

Commit

Permalink
Update bluetooth_devices.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Dec 29, 2024
1 parent 3181edb commit 8b917ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluetooth_devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, bus: SystemMessageBus, loop: asyncio.AbstractEventLoop,
self.interrupt_socket_path: Optional[str] = interrupt_socket_path
self.interrupt_socket: Optional[socket.socket] = None
self.sockets_connected = False
self._tasks = set()
self._tasks: set[asyncio.Task[None]] = set()

print("BT Device ",object_path," created")
asyncio.run_coroutine_threadsafe(self.reconcile_connected_state(1), loop=self.loop)
Expand Down

0 comments on commit 8b917ff

Please sign in to comment.