From d9e54fca2fa4300f621d2fecc6c2e500c515c59e Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sun, 23 Aug 2020 11:01:51 -0500 Subject: [PATCH] remove bad-whitespace pylint directive --- adafruit_lsm9ds0.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/adafruit_lsm9ds0.py b/adafruit_lsm9ds0.py index 6deaf99..a429641 100644 --- a/adafruit_lsm9ds0.py +++ b/adafruit_lsm9ds0.py @@ -63,7 +63,6 @@ __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LSM9DS0.git" # Internal constants and register values: -# pylint: disable=bad-whitespace _LSM9DS0_ADDRESS_ACCELMAG = const(0x1D) # 3B >> 1 = 7bit default _LSM9DS0_ADDRESS_GYRO = const(0x6B) # D6 >> 1 = 7bit default _LSM9DS0_XM_ID = const(0b01001001) @@ -131,7 +130,6 @@ GYROSCALE_245DPS = 0b00 << 4 # +/- 245 degrees per second rotation GYROSCALE_500DPS = 0b01 << 4 # +/- 500 degrees per second rotation GYROSCALE_2000DPS = 0b10 << 4 # +/- 2000 degrees per second rotation -# pylint: enable=bad-whitespace def _twos_comp(val, bits):