Skip to content

Commit

Permalink
Fix invalid syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mmxsrup committed Nov 14, 2023
1 parent a7e0838 commit 398b177
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions feature_extraction/methods/AuroraFE/src/predicate.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ def compare_to(self, other) -> int:
if not isinstance(other, EdgePredicate):
return -1

if self.location == other.location and
self.source == other.source and
self.transition == other.transition and
if self.location == other.location and \
self.source == other.source and \
self.transition == other.transition and \
self.destination == other.destination:
return 0
else:
Expand Down

0 comments on commit 398b177

Please sign in to comment.