formatting

This commit is contained in:
Cole Smith 2022-04-17 22:02:13 -07:00 committed by xs5871
parent 6970a6c786
commit 9b34fcd7ef

View File

@ -18,20 +18,20 @@ class OledReactionType:
STATIC = 0
LAYER = 1
class OledData:
def __init__(
self,
image=None,
corner_one=None,
corner_two=None,
corner_three=None,
corner_four=None,
self,
image=None,
corner_one=None,
corner_two=None,
corner_three=None,
corner_four=None,
):
if image:
self.data=[image]
self.data = [image]
elif corner_one and corner_two and corner_three and corner_four:
self.data= [corner_one,corner_two,corner_three,corner_four]
self.data = [corner_one, corner_two, corner_three, corner_four]
class Oled(Extension):