Skip to content

Commit ef64ef7

Browse files
authored
Merge pull request #49 from jepler/remove-bad-whitespace-directive
remove bad-whitespace pylint directive
2 parents a9e0c61 + c98c9c7 commit ef64ef7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

adafruit_character_lcd/character_lcd.py

-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
__version__ = "0.0.0-auto.0"
5353
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_CharLCD.git"
5454

55-
# pylint: disable-msg=bad-whitespace
5655
# Commands
5756
_LCD_CLEARDISPLAY = const(0x01)
5857
_LCD_RETURNHOME = const(0x02)
@@ -88,8 +87,6 @@
8887
# Offset for up to 4 rows.
8988
_LCD_ROW_OFFSETS = (0x00, 0x40, 0x14, 0x54)
9089

91-
# pylint: enable-msg=bad-whitespace
92-
9390

9491
def _set_bit(byte_value, position, val):
9592
# Given the specified byte_value set the bit at position to the provided

0 commit comments

Comments
 (0)