You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
On line 71 in hid_transport.py only the following line is implemented: devices.append(HIDDevice)
whereas I would expect that an object of the class HIDDevice would be implemented, like below: devices.append(HIDDevice(d['path']))
Is there another way to obtain a list of actual HIDDevice objects? Or am I doing something wrong?
The text was updated successfully, but these errors were encountered:
There will be a new release which includes this fix shortly (probably some time next week), as well as some additional improvements, such as Python 3 compatibility.
On line 71 in hid_transport.py only the following line is implemented:
devices.append(HIDDevice)
whereas I would expect that an object of the class HIDDevice would be implemented, like below:
devices.append(HIDDevice(d['path']))
Is there another way to obtain a list of actual HIDDevice objects? Or am I doing something wrong?
The text was updated successfully, but these errors were encountered: