From 27de7986da2556ab036ae83fea956a1df6deb63e 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_si5351.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/adafruit_si5351.py b/adafruit_si5351.py index c4d1137..6314268 100644 --- a/adafruit_si5351.py +++ b/adafruit_si5351.py @@ -40,7 +40,6 @@ __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_SI5351.git" -# pylint: disable=bad-whitespace # Internal constants: _SI5351_ADDRESS = const(0x60) # Assumes ADDR pin = low _SI5351_READBIT = const(0x01) @@ -130,7 +129,6 @@ R_DIV_32 = 5 R_DIV_64 = 6 R_DIV_128 = 7 -# pylint: enable=bad-whitespace # Disable invalid name because p1, p2, p3 variables are false positives.