From 5d401d43a9cd4c80eff8855103af3d41b7118a2e Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sun, 23 Aug 2020 11:01:52 -0500 Subject: [PATCH] remove bad-whitespace pylint directive --- adafruit_sgp30.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/adafruit_sgp30.py b/adafruit_sgp30.py index cb92f3b..d732442 100755 --- a/adafruit_sgp30.py +++ b/adafruit_sgp30.py @@ -49,14 +49,12 @@ __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_SGP30.git" -# pylint: disable=bad-whitespace _SGP30_DEFAULT_I2C_ADDR = const(0x58) _SGP30_FEATURESETS = (0x0020, 0x0022) _SGP30_CRC8_POLYNOMIAL = const(0x31) _SGP30_CRC8_INIT = const(0xFF) _SGP30_WORD_LEN = const(2) -# pylint: enable=bad-whitespace class Adafruit_SGP30: