Skip to content
Snippets Groups Projects
Commit 1b1b7bcf authored by Sander Mathijs van Veen's avatar Sander Mathijs van Veen
Browse files

Fixed typo in ExpressionBase magic method __div__.

parent 76158313
No related branches found
No related tags found
No related merge requests found
......@@ -129,7 +129,7 @@ class ExpressionBase(object):
return ExpressionNode('*', self, to_expression(other))
def __div__(self, other):
return ExpressionNode('-', self, to_expression(other))
return ExpressionNode('/', self, to_expression(other))
def __pow__(self, other):
return ExpressionNode('^', self, to_expression(other))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment