From f72925a04a8e8b1ee5139bacc9d93b3e161f1dc8 Mon Sep 17 00:00:00 2001 From: shrkey Date: Thu, 29 Sep 2016 22:40:05 +0100 Subject: [PATCH] back update --- darkwater_640/PCA9685.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darkwater_640/PCA9685.py b/darkwater_640/PCA9685.py index f08a679..f982701 100644 --- a/darkwater_640/PCA9685.py +++ b/darkwater_640/PCA9685.py @@ -71,7 +71,7 @@ class PCA9685(object): """Initialize the PCA9685.""" # Setup I2C interface for the device. if i2c is None: - from .I2C import I2C as I2C + import I2C as I2C i2c = I2C self._device = i2c.get_i2c_device(address, **kwargs) self.set_all_pwm(0, 0)