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
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: