Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <sylvain.leclerc@rte-france.com>
  • Loading branch information
sylvlecl committed Sep 10, 2024
1 parent 8aa8a05 commit ce9d423
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/andromede/expression/equality.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ def negation(self, left: NegationNode, right: NegationNode) -> bool:
def addition(self, left: AdditionNode, right: AdditionNode) -> bool:
left_ops = left.operands
right_ops = right.operands
return len(left_ops) == len(right_ops) and all(self.visit(l, r) for l, r in zip(left_ops, right_ops))
return len(left_ops) == len(right_ops) and all(
self.visit(l, r) for l, r in zip(left_ops, right_ops)
)

def multiplication(
self, left: MultiplicationNode, right: MultiplicationNode
Expand Down

0 comments on commit ce9d423

Please sign in to comment.