Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Jan 9, 2024
1 parent c24dfb8 commit 9803000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drawbot_skia/gstate.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def copy(self, **properties):
return self.__class__(**dct)

def __eq__(self, other):
if type(self) != type(other):
if type(self) is not type(other):
return False
if self._names != other._names:
return False
Expand Down

0 comments on commit 9803000

Please sign in to comment.