Quick fix

This commit is contained in:
2021-04-07 07:02:44 +03:00
parent 5e61fed677
commit b75eee7117
+2 -2
View File
@@ -88,11 +88,11 @@ class EndSceen():
def shiftLeft(self, arr): def shiftLeft(self, arr):
return bytearray([lambda x: x if x == 10 else x-32 for x in arr]) return bytearray([x if x == 10 else x-32 for x in arr])
def shiftRight(self, arr): def shiftRight(self, arr):
return bytearray([lambda x: x if x == 10 else x+32 for x in arr]) return bytearray([x if x == 10 else x+32 for x in arr])
def renderText(self, text, font, color, center, backColor=None): def renderText(self, text, font, color, center, backColor=None):