Skip to content

Commit 162fde1

Browse files
committed
Run pre-commit
1 parent 189b2e1 commit 162fde1

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

adafruit_mcp230xx/digital_inout.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
__version__ = "0.0.0+auto.0"
2525
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_MCP230xx.git"
2626

27+
2728
# Internal helpers to simplify setting and getting a bit inside an integer.
2829
def _get_bit(val, bit: int) -> int:
2930
return val & (1 << bit) > 0

adafruit_mcp230xx/mcp23s08.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
_MCP23S08_INTCAP = const(0x08)
4040
_MCP23S08_GPIO = const(0x09)
4141

42+
4243
# pylint: disable=too-many-arguments
4344
class MCP23S08(MCP23SXX):
4445
"""Supports MCP23S08 instance on specified I2C bus and optionally

adafruit_mcp230xx/mcp23s17.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
_MCP23S17_INTCAPA = const(0x10)
4646
_MCP23S17_INTCAPB = const(0x11)
4747

48+
4849
# pylint: disable=too-many-arguments
4950
# pylint: disable=too-many-public-methods
5051
class MCP23S17(MCP23SXX):

adafruit_mcp230xx/mcp23sxx.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
MCP23SXX_CODE_READ = 0x41
3434
MCP23SXX_CODE_WRITE = 0x40
3535

36+
3637
# pylint: disable=too-few-public-methods
3738
class MCP23SXX(MCP23XXX):
3839
"""Base class for MCP23Sxx devices."""

adafruit_mcp230xx/mcp23xxx.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
__version__ = "0.0.0+auto.0"
2424
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_MCP230xx.git"
2525

26+
2627
# pylint: disable=too-few-public-methods
2728
class MCP23XXX:
2829
"""Base class for MCP23xxx devices."""

0 commit comments

Comments
 (0)