Skip to content

Commit

Permalink
fix int error in _init_devices
Browse files Browse the repository at this point in the history
  • Loading branch information
Neradoc authored Nov 29, 2024
1 parent 7c6c18f commit 62093ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_ble/services/standard/hid.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def get_report_info(collection: Dict, reports: Dict) -> None:
usage = collection["locals"][0][0]
reports = {}
get_report_info(collection, reports)
for report_id, report in reports:
for report_id, report in reports.items():
output_size = report["output_size"]
if output_size > 0:
self.devices.append(
Expand Down

0 comments on commit 62093ea

Please sign in to comment.