We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d197e commit 1bd2e4aCopy full SHA for 1bd2e4a
adafruit_framebuf.py
@@ -73,7 +73,7 @@ def fill(framebuf, color):
73
else:
74
fill = 0x00
75
for i in range(len(framebuf.buf)): # pylint: disable=consider-using-enumerate
76
- framebuf.buf[i] = fill
+ framebuf.buf[i] = bytes(fill)
77
78
@staticmethod
79
def rect(framebuf, x, y, width, height, color):
0 commit comments