We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7faf05 commit 071a248Copy full SHA for 071a248
examples/print-hidraw.py
@@ -16,4 +16,6 @@
16
print(f'Physical Name: {d.phys}')
17
print(f'Unique Name: {d.uniq or "None"}')
18
print(f'Report Descriptor Size: {d.report_descriptor_size}')
19
- print(f'Report Descriptor: {d.report_descriptor}')
+ print('Report Descriptor: {}'.format(
20
+ ' '.join(f'{byte:02x}' for byte in d.report_descriptor)
21
+ ))
0 commit comments