pyUSBtin icon indicating copy to clipboard operation
pyUSBtin copied to clipboard

Exception class fails to initialise (raises exception)

Open RobPearce opened this issue 4 years ago • 0 comments

The init method of USBtinException uses the "super" operator with no arguments, which throws an exception on at least some versions of Python. It should instead say: def __init__(self, *args, **kwargs): super(USBtinException, self).__init__(*args, **kwargs)

RobPearce avatar Jul 08 '20 20:07 RobPearce