Skip to content

Commit

Permalink
Update adafruit_24lc32.py for black compatibility
Browse files Browse the repository at this point in the history
black requires a trailing comma
  • Loading branch information
TonyLHansen committed Jan 6, 2024
1 parent c0645af commit 303349b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_24lc32.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def __init__(
address: int = 0x50,
write_protect: bool = False,
wp_pin: Optional[DigitalInOut] = None,
max_size: int = _MAX_SIZE_I2C
max_size: int = _MAX_SIZE_I2C,
) -> None:
from adafruit_bus_device.i2c_device import ( # pylint: disable=import-outside-toplevel
I2CDevice as i2cdev,
Expand Down

0 comments on commit 303349b

Please sign in to comment.