Skip to content

Commit

Permalink
Fix new lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Jul 29, 2024
1 parent 56dd7ff commit 331dc0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coloraide/color.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def __eq__(self, other: Any) -> bool:
"""Compare equal."""

return (
type(other) == type(self) and
type(other) is type(self) and
other.space() == self.space() and
util.cmp_coords(other[:], self[:])
)
Expand Down

0 comments on commit 331dc0d

Please sign in to comment.