Skip to content

Commit

Permalink
QA: Apply codespell suggestions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Nov 20, 2023
1 parent faa14c8 commit 624ca6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inky/inky_ssd1608.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def _update(self, buf_a, buf_b, busy_wait=True):
self._send_command(ssd1608.WRITE_DUMMY, [0x1B])
# Set Line Width
self._send_command(ssd1608.WRITE_GATELINE, [0x0B])
# Data entry squence (scan direction leftward and downward)
# Data entry sequence (scan direction leftward and downward)
self._send_command(ssd1608.DATA_MODE, [0x03])
# Set ram X start and end position
xposBuf = [0x00, self.cols // 8 - 1]
Expand Down
2 changes: 1 addition & 1 deletion inky/inky_ssd1683.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def _update(self, buf_a, buf_b, busy_wait=True):
self._send_command(ssd1683.WRITE_DUMMY, [0x1B])
# Set Line Width
self._send_command(ssd1683.WRITE_GATELINE, [0x0B])
# Data entry squence (scan direction leftward and downward)
# Data entry sequence (scan direction leftward and downward)
self._send_command(ssd1683.DATA_MODE, [0x03])
# Set ram X start and end position
xposBuf = [0x00, self.cols // 8 - 1]
Expand Down

0 comments on commit 624ca6e

Please sign in to comment.