Skip to content

Commit d25f008

Browse files
committed
remove bad-whitespace pylint directive
1 parent 6836159 commit d25f008

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adafruit_lsm303_accel.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
__version__ = "0.0.0-auto.0"
6161
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LSM303_Accel.git"
6262

63-
# pylint: disable=bad-whitespace
6463
_ADDRESS_ACCEL = const(0x19) # (0x32 >> 1) // 0011001x
6564
_ADDRESS_MAG = const(0x1E) # (0x3C >> 1) // 0011110x
6665
_ID = const(0xD4) # (0b11010100)
@@ -138,7 +137,7 @@ class Range:
138137
RANGE_16G = const(3)
139138

140139

141-
# pylint: enable=bad-whitespace,too-few-public-methods
140+
# pylint: too-few-public-methods
142141

143142

144143
class LSM303_Accel: # pylint:disable=too-many-instance-attributes

0 commit comments

Comments
 (0)