Skip to content

Commit

Permalink
Fix flake8 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-hull committed Mar 29, 2019
1 parent 2d04fd0 commit 95b2968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luma/oled/device/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,5 +587,5 @@ def _init_sequence(self):

def _set_position(self, top, right, bottom, left):
self.command(
0x15, left>>1, (right - 1)>>1, # set column addr
0x15, left >> 1, (right - 1) >> 1, # set column addr
0x75, top, bottom - 1) # set row addr

0 comments on commit 95b2968

Please sign in to comment.