Skip to content

Commit

Permalink
Fix device representation
Browse files Browse the repository at this point in the history
  • Loading branch information
quaxalber committed Dec 15, 2023
1 parent eed9070 commit 636c796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bluetooth_2_usb/relay.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def init_usb_gadgets() -> None:
_keyboard_gadget = Keyboard(enabled_devices)
_mouse_gadget = Mouse(enabled_devices)
_consumer_gadget = ConsumerControl(enabled_devices)
_logger.debug(f"Enabled USB gadgets: {enabled_devices}")
_logger.debug(f"Enabled USB gadgets: {(str(dev) for dev in enabled_devices)}")


def all_gadgets_ready() -> bool:
Expand Down

0 comments on commit 636c796

Please sign in to comment.