Skip to content

Commit

Permalink
Merge pull request #129 from scirelli/issue_128
Browse files Browse the repository at this point in the history
Issue 128: Fixed an error message that was using the wrong number system
  • Loading branch information
caternuson authored Jan 30, 2024
2 parents 5c2ebbb + 6229da8 commit 262e47e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_seesaw/seesaw.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def __init__(self, i2c_bus, addr=0x49, drdy=None, reset=True):
_SAMD09_HW_ID_CODE,
):
raise RuntimeError(
f"Seesaw hardware ID returned 0x{self.chip_id} is not "
f"Seesaw hardware ID returned 0x{self.chip_id:x} is not "
"correct! Please check your wiring."
)

Expand Down

0 comments on commit 262e47e

Please sign in to comment.