We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2274e61 commit ba1bce7Copy full SHA for ba1bce7
arena/attributes/color.py
@@ -39,7 +39,7 @@ def __init__(self, red=0, green=0, blue=0):
39
if isinstance(green, float):
40
self.green = int(green)
41
42
- super().__init__(red=red, green=green, blue=blue)
+ super().__init__(red=self.red, green=self.green, blue=self.blue)
43
44
@property
45
def hex(self):
0 commit comments