From 671f306a27a4648eeb5ac90b39d0974ab15d8892 Mon Sep 17 00:00:00 2001 From: Stryxion Date: Tue, 13 Jan 2026 09:42:40 +0100 Subject: [PATCH] fix: black --- apps/usb_probe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/usb_probe.py b/apps/usb_probe.py index 32d0255f..51ab91cc 100644 --- a/apps/usb_probe.py +++ b/apps/usb_probe.py @@ -177,7 +177,7 @@ def main(verbose: bool, manufacturer: str, product: str, hci_only: bool): load_libusb() with usb1.USBContext() as context: bluetooth_device_count = 0 - devices: dict[tuple[Any, Any], list[str|None]] = {} + devices: dict[tuple[Any, Any], list[str | None]] = {} for device in context.getDeviceIterator(skip_on_error=True): device_class = device.getDeviceClass()