Skip to content

Commit 79b11d1

Browse files
committed
remove leftover whitespace
1 parent 2e5ca23 commit 79b11d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pybricks/parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __iter__(self):
119119
def __repr__(self):
120120
return "Color(h={}, s={}, v={})".format(self.h, self.s, self.v)
121121

122-
def __eq__(self, other: Color) -> bool:
122+
def __eq__(self, other: Color) -> bool:
123123
return self.h == other.h and self.s == other.s and self.v == other.v
124124

125125
def __mul__(self, scale: float) -> Color:

0 commit comments

Comments
 (0)