Skip to content

Commit f85f75d

Browse files
authored
Merge pull request #20 from jepler/remove-bad-whitespace-directive
remove bad-whitespace pylint directive
2 parents 5689066 + d9e54fc commit f85f75d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

adafruit_lsm9ds0.py

-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LSM9DS0.git"
6464

6565
# Internal constants and register values:
66-
# pylint: disable=bad-whitespace
6766
_LSM9DS0_ADDRESS_ACCELMAG = const(0x1D) # 3B >> 1 = 7bit default
6867
_LSM9DS0_ADDRESS_GYRO = const(0x6B) # D6 >> 1 = 7bit default
6968
_LSM9DS0_XM_ID = const(0b01001001)
@@ -131,7 +130,6 @@
131130
GYROSCALE_245DPS = 0b00 << 4 # +/- 245 degrees per second rotation
132131
GYROSCALE_500DPS = 0b01 << 4 # +/- 500 degrees per second rotation
133132
GYROSCALE_2000DPS = 0b10 << 4 # +/- 2000 degrees per second rotation
134-
# pylint: enable=bad-whitespace
135133

136134

137135
def _twos_comp(val, bits):

0 commit comments

Comments
 (0)