From 55887ff45e1bc5368fcfd2b570aa652361f8e3a2 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_max9744.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/adafruit_max9744.py b/adafruit_max9744.py index f7e0c80..2d0e97e 100644 --- a/adafruit_max9744.py +++ b/adafruit_max9744.py @@ -47,7 +47,6 @@ __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_MAX9744.git" -# pylint: disable=bad-whitespace # Internal constants: _MAX9744_DEFAULT_ADDRESS = const(0b01001011) _MAX9744_COMMAND_VOLUME = const(0b00000000) @@ -55,7 +54,6 @@ _MAX9744_COMMAND_CLASSIC_PWM = const(0b01000001) _MAX9744_COMMAND_VOLUME_UP = const(0b11000100) _MAX9744_COMMAND_VOLUME_DOWN = const(0b11000101) -# pylint: enable=bad-whitespace class MAX9744: