Skip to content

Commit 34e18ac

Browse files
committed
fixed wrong intendation
1 parent 3b91186 commit 34e18ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Adafruit_LEDBackpack/Adafruit_7Segment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def writeDigitRaw(self, charNumber, value):
5252
"Sets a digit using the raw 16-bit value"
5353
if (charNumber > 7):
5454
return
55-
if ((self.display_inverted) & (charNumber < 5)):
55+
if ((self.display_inverted) & (charNumber < 5)):
5656
"if inverted we need to use reverse character positioning"
5757
charNumber = 4 - charNumber
5858
# Set the appropriate digit

0 commit comments

Comments
 (0)