Skip to content

Commit

Permalink
Fix default case bug
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Nov 20, 2023
1 parent 1d7f4d4 commit 785500c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fault/property.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def __init__(self, arg):
def __or__(self, other):
if isinstance(other, Property):
return other.__ror__(self)
return super().__or__(self)
return super().__or__(other)


def not_(arg):
Expand Down

0 comments on commit 785500c

Please sign in to comment.