remove debugging init kwarg

This commit is contained in:
brentru 2019-09-17 14:53:12 -04:00
parent 586e5fbf9a
commit 1f6fe28e6f

View file

@ -159,7 +159,7 @@ class ATECC:
raise IndexError("ATECCx08 not found - please check your wiring!") raise IndexError("ATECCx08 not found - please check your wiring!")
self._i2c_bus.unlock() self._i2c_bus.unlock()
if not self._i2c_device: if not self._i2c_device:
self._i2c_device = I2CDevice(self._i2c_bus, _REG_ATECC_DEVICE_ADDR, debug=False) self._i2c_device = I2CDevice(self._i2c_bus, _REG_ATECC_DEVICE_ADDR)
# check if we are ready to read from # check if we are ready to read from
r = bytearray(1) r = bytearray(1)
self._get_response(r) self._get_response(r)