Skip to content

Commit 07b23e8

Browse files
committed
Correct Missing Type Annotations
1 parent fe721fc commit 07b23e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_ina260.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ def __init__(self, i2c_bus: I2C(), address: int = 0x40) -> None:
178178

179179
if self._manufacturer_id != self.TEXAS_INSTRUMENT_ID:
180180
raise RuntimeError(
181-
f"Failed to find Texas Instrument ID, read {self._manufacturer_id} while expected {self.TEXAS_INSTRUMENT_ID}"
181+
f"Failed to find Texas Instrument ID, read {self._manufacturer_id} while expected "
182+
f"{self.TEXAS_INSTRUMENT_ID}"
182183
" - check your wiring!"
183184
)
184185

0 commit comments

Comments
 (0)