From f8f92afc32c25c4695068fc2efa207d5b1a964c7 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_vcnl4010.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/adafruit_vcnl4010.py b/adafruit_vcnl4010.py index 5b91db1..6581634 100644 --- a/adafruit_vcnl4010.py +++ b/adafruit_vcnl4010.py @@ -51,7 +51,6 @@ __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_VCNL4010.git" -# pylint: disable=bad-whitespace # Internal constants: _VCNL4010_I2CADDR_DEFAULT = const(0x13) _VCNL4010_COMMAND = const(0x80) @@ -76,7 +75,6 @@ FREQUENCY_1M5625 = 2 FREQUENCY_781K25 = 1 FREQUENCY_390K625 = 0 -# pylint: enable=bad-whitespace # Disable pylint's name warning as it causes too much noise. Suffixes like # BE (big-endian) or mA (milli-amps) don't confirm to its conventions--by