From 714b3262705b7ea05ace1404fd8480b0ad771da8 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_lsm303dlh_mag.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/adafruit_lsm303dlh_mag.py b/adafruit_lsm303dlh_mag.py index c7693dd..84b49be 100644 --- a/adafruit_lsm303dlh_mag.py +++ b/adafruit_lsm303dlh_mag.py @@ -56,7 +56,6 @@ __version__ = "0.0.0-auto.0" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LSM303DHL_Mag.git" -# pylint: disable=bad-whitespace _ADDRESS_MAG = const(0x1E) # (0x3C >> 1) // 0011110x _ID = const(0xD4) # (0b11010100) @@ -102,7 +101,6 @@ # Conversion constants _GRAVITY_STANDARD = 9.80665 # Earth's gravity in m/s^2 _GAUSS_TO_MICROTESLA = 100.0 # Gauss to micro-Tesla multiplier -# pylint: enable=bad-whitespace class LSM303DLH_Mag: