Merge remote-tracking branch 'origin/main'

This commit is contained in:
Hosted Weblate 2022-03-01 03:04:22 +01:00
commit e585bdaa33
No known key found for this signature in database
GPG Key ID: A3FAAA06E6569B4C
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
//| class Device:
//| """HID Device specification"""
//|
//| def __init__(self, *, descriptor: ReadableBuffer, usage_page: int, usage: int, report_ids: Sequence[int], in_report_lengths: Sequence[int], out_report_lengths: Sequence[int]) -> None:
//| def __init__(self, *, report_descriptor: ReadableBuffer, usage_page: int, usage: int, report_ids: Sequence[int], in_report_lengths: Sequence[int], out_report_lengths: Sequence[int]) -> None:
//| """Create a description of a USB HID device. The actual device is created when you
//| pass a `Device` to `usb_hid.enable()`.
//|