We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6836159 commit d25f008Copy full SHA for d25f008
adafruit_lsm303_accel.py
@@ -60,7 +60,6 @@
60
__version__ = "0.0.0-auto.0"
61
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LSM303_Accel.git"
62
63
-# pylint: disable=bad-whitespace
64
_ADDRESS_ACCEL = const(0x19) # (0x32 >> 1) // 0011001x
65
_ADDRESS_MAG = const(0x1E) # (0x3C >> 1) // 0011110x
66
_ID = const(0xD4) # (0b11010100)
@@ -138,7 +137,7 @@ class Range:
138
137
RANGE_16G = const(3)
139
140
141
-# pylint: enable=bad-whitespace,too-few-public-methods
+# pylint: too-few-public-methods
142
143
144
class LSM303_Accel: # pylint:disable=too-many-instance-attributes
0 commit comments