Skip to content

Commit 303349b

Browse files
authored
Update adafruit_24lc32.py for black compatibility
black requires a trailing comma
1 parent c0645af commit 303349b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_24lc32.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def __init__(
234234
address: int = 0x50,
235235
write_protect: bool = False,
236236
wp_pin: Optional[DigitalInOut] = None,
237-
max_size: int = _MAX_SIZE_I2C
237+
max_size: int = _MAX_SIZE_I2C,
238238
) -> None:
239239
from adafruit_bus_device.i2c_device import ( # pylint: disable=import-outside-toplevel
240240
I2CDevice as i2cdev,

0 commit comments

Comments
 (0)