Skip to content

Commit c661e17

Browse files
committed
Fix ruff error, line too long
1 parent ea44839 commit c661e17

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_ina3221.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,9 @@ def summation_channel(self, value: bool) -> None:
278278
class INA3221:
279279
"""Driver for the INA3221 device with three channels."""
280280

281-
def __init__(self, i2c, address: int = DEFAULT_ADDRESS, enable: List = [0, 1, 2], probe: bool = True) -> None:
281+
def __init__(
282+
self, i2c, address: int = DEFAULT_ADDRESS, enable: List = [0, 1, 2], probe: bool = True
283+
) -> None:
282284
"""Initializes the INA3221 class over I2C
283285
Args:
284286
i2c (I2C): The I2C bus to which the INA3221 is connected.

0 commit comments

Comments
 (0)