Skip to content

Commit

Permalink
fix: pylint again
Browse files Browse the repository at this point in the history
  • Loading branch information
boutreet committed Mar 7, 2024
1 parent 7a64a8a commit 63d6046
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions leaphymicropython/utils/ssd1306.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def power_on(self):
Turn on the display over SPI.
"""
self.res.high()
time.sleep_ms(1)
time.sleep_ms(1) # pylint disable=no-member
self.res.low()
time.sleep_ms(10)
time.sleep_ms(10) # pylint disable=no-member
self.res.high()

0 comments on commit 63d6046

Please sign in to comment.