I am trying to set my init and when trying to set (x,y), I am getting an invalid Syntax error on the open parentheses on the coordinates.
I feel like this is going to be an obvious mistake but I've been looking at it too long and could use some fresh eyes...
def __init__(self, (x,y), size, color = (255,255,255)):
self.x = x
self.y = y
self.size = size
self.color = color
self.width = width