Skip to content
Prev Previous commit
Update character_lcd.py
  • Loading branch information
profbrady authored Apr 12, 2019
commit f9d662e1079a2411852e3e9d1b17ae98d8c400de
6 changes: 3 additions & 3 deletions adafruit_character_lcd/character_lcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def __init__(self, rs, en, d4, d5, d6, d7, columns, lines
self._enable = None
self._direction = None
# track row and column used in cursor_position
# itialize to 0,0
# initialize to 0,0
self.row = 0
self.column = 0
self._column_align = False
Expand Down Expand Up @@ -205,8 +205,8 @@ def clear(self):

@property
def column_align(self):
"""If True, message text after '\n' starts directly below start of first
character in message. If False, text after '\n' starts at column zero.
"""If True, message text after '\\n' starts directly below start of first
character in message. If False, text after '\\n' starts at column zero.
"""
return self._column_align

Expand Down