We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f58dea6 commit 54f38e5Copy full SHA for 54f38e5
adafruit_seesaw/seesaw.py
@@ -439,7 +439,6 @@ def disable_encoder_interrupt(self, encoder=0):
439
#
440
# return self.read8(SEESAW_SERCOM0_BASE + sercom, SEESAW_SERCOM_DATA)
441
442
-
443
def _get_eeprom_i2c_addr(self):
444
""" Return the EEPROM address used to store I2C address."""
445
chip_id = self.chip_id
@@ -455,9 +454,7 @@ def _get_eeprom_i2c_addr(self):
455
454
_ATTINY1617_HW_ID_CODE,
456
):
457
return 0xFF
458
- elif chip_id in (
459
- _SAMD09_HW_ID_CODE,
460
- ):
+ elif chip_id in (_SAMD09_HW_ID_CODE,):
461
return 0x3F
462
else:
463
raise RuntimeError("Unknown chip id", hex(chip_id))
0 commit comments