Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
josiah-wolf-oberholtzer committed Oct 27, 2023
1 parent 7af1662 commit b959aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supriya/ugens/bases.py
Original file line number Diff line number Diff line change
Expand Up @@ -3492,7 +3492,7 @@ def __init__(self, source=None, output_index=None):
### SPECIAL METHODS ###

def __eq__(self, expr):
if type(self) != type(expr):
if not isinstance(expr, type(self)):
return False
if self._output_index != expr._output_index:
return False
Expand Down

0 comments on commit b959aa6

Please sign in to comment.