Skip to content

Commit e92c95f

Browse files
author
caternuson
committed
linty linterson
1 parent d7241c1 commit e92c95f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

adafruit_ht16k33/ht16k33.py

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def brightness(self, brightness):
8888

8989
@property
9090
def auto_write(self):
91+
"""Auto write updates to the display."""
9192
return self._auto_write
9293

9394
@auto_write.setter

adafruit_ht16k33/segments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def print(self, value):
221221
raise ValueError('Unsupported display value type: {}'.format(type(value)))
222222
if self._auto_write:
223223
self.show()
224-
224+
225225
def scroll(self, count=1):
226226
"""Scroll the display by specified number of places."""
227227
if count >= 0:

0 commit comments

Comments
 (0)