mcauser/micropython-mcp23017

unexpected keyword argument 'pullup'

Closed this issue · 2 comments

Getting this error when following the list interface example

>>> mcp[0].input(pullup=1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unexpected keyword argument 'pullup'
>>> 

Example should be changed to:

>>> mcp[0].input(pull=1)

Hi @ilium007 Thanks for that.
Fixed in e7cea6e