Skip to content

Commit 4b49fd4

Browse files
authored
Merge pull request #23 from jepler/remove-bad-whitespace-directive
remove bad-whitespace pylint directive
2 parents 36d68e3 + 6f23d4b commit 4b49fd4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

adafruit_lsm9ds1.py

-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
from micropython import const
6262

6363
# Internal constants and register values:
64-
# pylint: disable=bad-whitespace
6564
_LSM9DS1_ADDRESS_ACCELGYRO = const(0x6B)
6665
_LSM9DS1_ADDRESS_MAG = const(0x1E)
6766
_LSM9DS1_XG_ID = const(0b01101000)
@@ -135,7 +134,6 @@
135134
GYROSCALE_245DPS = 0b00 << 3 # +/- 245 degrees/s rotation
136135
GYROSCALE_500DPS = 0b01 << 3 # +/- 500 degrees/s rotation
137136
GYROSCALE_2000DPS = 0b11 << 3 # +/- 2000 degrees/s rotation
138-
# pylint: enable=bad-whitespace
139137

140138

141139
def _twos_comp(val, bits):

0 commit comments

Comments
 (0)