Fix aperture macro multiplication syntax

This commit is contained in:
jaseg 2023-04-05 14:15:33 +02:00
parent 513f6ebf1b
commit ee0c1d38e6

View file

@ -204,7 +204,7 @@ class OperatorExpression(Expression):
op = {operator.add: '+',
operator.sub: '-',
operator.mul: 'X',
operator.mul: 'x',
operator.truediv: '/'} [self.op]
return f'{lval}{op}{rval}'