Skip to content

Commit b42b29d

Browse files
committed
remove bad-whitespace pylint directive
1 parent b7e88db commit b42b29d

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

adafruit_cap1188/cap1188.py

-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
__version__ = "0.0.0-auto.0"
4848
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_CAP1188.git"
4949

50-
# pylint: disable=bad-whitespace
5150
_CAP1188_MID = const(0x5D)
5251
_CAP1188_PID = const(0x50)
5352
_CAP1188_MAIN_CONTROL = const(0x00)
@@ -74,7 +73,6 @@
7473
_CAP1188_PRODUCT_ID = const(0xFD)
7574
_CAP1188_MANU_ID = const(0xFE)
7675
_CAP1188_REVISION = const(0xFF)
77-
# pylint: enable=bad-whitespace
7876

7977
_SENSITIVITY = (128, 64, 32, 16, 8, 4, 2, 1)
8078

adafruit_cap1188/i2c.py

-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@
4949
__version__ = "0.0.0-auto.0"
5050
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_CAP1188.git"
5151

52-
# pylint: disable=bad-whitespace
5352
_CAP1188_DEFAULT_ADDRESS = const(0x29)
54-
# pylint: enable=bad-whitespace
5553

5654

5755
class CAP1188_I2C(CAP1188):

adafruit_cap1188/spi.py

-2
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,9 @@
4949
__version__ = "0.0.0-auto.0"
5050
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_CAP1188.git"
5151

52-
# pylint: disable=bad-whitespace
5352
_CAP1188_SPI_SET_ADDR = const(0x7D)
5453
_CAP1188_SPI_WRITE_DATA = const(0x7E)
5554
_CAP1188_SPI_READ_DATA = const(0x7F)
56-
# pylint: enable=bad-whitespace
5755

5856

5957
class CAP1188_SPI(CAP1188):

0 commit comments

Comments
 (0)