wittrup
wittrup
Updated [core.py](https://github.com/rene-aguirre/pywinusb/blob/master/pywinusb/hid/core.py) to avoid AttributeError: module 'collections' has no attribute 'Callable' when running [show_hids.py](https://github.com/rene-aguirre/pywinusb/blob/master/examples/show_hids.py) example with python 3.10
My test script ```python import spacenavigator from time import strftime as now, sleep FORMAT = '%Y-%m-%d %H:%M:%S' devs = spacenavigator.list_devices() print(devs) while devs: success = spacenavigator.open() if success: while True:...