Skip to content

Commit 4265e73

Browse files
committed
"Reformatted per new black version"
1 parent 159c5a9 commit 4265e73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_gfx/gfx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def _place_char(self, x0, y0, char, size, *args, **kwargs):
430430
data = arr[2:]
431431
for x in range(width):
432432
for y in range(height):
433-
bit = bool(data[x] & 2 ** y)
433+
bit = bool(data[x] & 2**y)
434434
# char pixel
435435
if bit:
436436
self.fill_rect(

0 commit comments

Comments
 (0)