Replace a tab with spaces

This commit is contained in:
James Carr 2021-08-02 17:32:42 +01:00
parent bd7536a1f4
commit 05cde58729

View file

@ -61,7 +61,7 @@ spots = (
# creating the circles & pulling in positions from spots # creating the circles & pulling in positions from spots
for spot in spots: for spot in spots:
circle = Circle(x0=spot[0], y0=spot[1], r=14, fill=0x888888) circle = Circle(x0=spot[0], y0=spot[1], r=14, fill=0x888888)
# adding circles to their display group # adding circles to their display group
circle_group.append(circle) circle_group.append(circle)
# square to show position on menu # square to show position on menu
rect = Rect(0, 0, 33, 33, fill=None, outline=0x00FF00, stroke = 3) rect = Rect(0, 0, 33, 33, fill=None, outline=0x00FF00, stroke = 3)