Skip to content
This repository was archived by the owner on Sep 30, 2019. It is now read-only.

Commit cfdd75d

Browse files
committed
Fix #9 by adding missing kwargs parameter to MCP230xx base.
1 parent e8b02e4 commit cfdd75d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Adafruit_GPIO/MCP230xx.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MCP230xxBase(GPIO.BaseGPIO):
3030
class for interacting with device.
3131
"""
3232

33-
def __init__(self, address, i2c=None):
33+
def __init__(self, address, i2c=None, **kwargs):
3434
"""Initialize MCP230xx at specified I2C address and bus number. If bus
3535
is not specified it will default to the appropriate platform detected bus.
3636
"""

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
requires.append('spidev')
1212

1313
setup(name = 'Adafruit_GPIO',
14-
version = '0.6.5',
14+
version = '0.6.6',
1515
author = 'Tony DiCola',
1616
author_email = 'tdicola@adafruit.com',
1717
description = 'Library to provide a cross-platform GPIO interface on the Raspberry Pi and Beaglebone Black using the RPi.GPIO and Adafruit_BBIO libraries.',

0 commit comments

Comments
 (0)