Skip to content

Commit 62093ea

Browse files
authored
fix int error in _init_devices
1 parent 7c6c18f commit 62093ea

File tree

1 file changed

+1
-1
lines changed
  • adafruit_ble/services/standard

1 file changed

+1
-1
lines changed

adafruit_ble/services/standard/hid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ def get_report_info(collection: Dict, reports: Dict) -> None:
442442
usage = collection["locals"][0][0]
443443
reports = {}
444444
get_report_info(collection, reports)
445-
for report_id, report in reports:
445+
for report_id, report in reports.items():
446446
output_size = report["output_size"]
447447
if output_size > 0:
448448
self.devices.append(

0 commit comments

Comments
 (0)