Commit cc5d8f57 authored by Taddeus Kroes's avatar Taddeus Kroes

Applied pep8.

parent 95b0fc11
...@@ -214,7 +214,6 @@ def multiply_numerics(root, args): ...@@ -214,7 +214,6 @@ def multiply_numerics(root, args):
""" """
scope, c0, c1 = args scope, c0, c1 = args
# Replace the left node with the new expression # Replace the left node with the new expression
substitution = Leaf(c0.value * c1.value).negate(c0.negated + c1.negated) substitution = Leaf(c0.value * c1.value).negate(c0.negated + c1.negated)
scope.replace(c0, substitution) scope.replace(c0, substitution)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment