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
Was getting this error with Python 3:
...sysfs/gpio.py", line 239, in new
instance = super(controller, cls).new(cls, args, kw)
TypeError: object() takes no parameters
Modified to:
instance = super(controller, cls).new(cls)
This works with Python 3.4
The text was updated successfully, but these errors were encountered:
Was getting this error with Python 3:
...sysfs/gpio.py", line 239, in new
instance = super(controller, cls).new(cls, args, kw)
TypeError: object() takes no parameters
Modified to:
instance = super(controller, cls).new(cls)
This works with Python 3.4
The text was updated successfully, but these errors were encountered: