Skip to content

Commit

Permalink
Merge pull request #49 from jepler/remove-bad-whitespace-directive
Browse files Browse the repository at this point in the history
remove bad-whitespace pylint directive
  • Loading branch information
dhalbert authored Aug 23, 2020
2 parents a9e0c61 + c98c9c7 commit ef64ef7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions adafruit_character_lcd/character_lcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_CharLCD.git"

# pylint: disable-msg=bad-whitespace
# Commands
_LCD_CLEARDISPLAY = const(0x01)
_LCD_RETURNHOME = const(0x02)
Expand Down Expand Up @@ -88,8 +87,6 @@
# Offset for up to 4 rows.
_LCD_ROW_OFFSETS = (0x00, 0x40, 0x14, 0x54)

# pylint: enable-msg=bad-whitespace


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

0 comments on commit ef64ef7

Please sign in to comment.