Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnaceBleukx committed Aug 23, 2024
1 parent bb2e17b commit c0562f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpmpy/solvers/exact.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,7 @@ def _make_numexpr(self, lhs, rhs):
xcfvars = []
xrhs = 0

assert is_num(rhs), "RHS of inequality scpmpy/solvers/exact.py
hould be numeric after transformations: {}".format(rhs)
assert is_num(rhs), "RHS of inequality should be numeric after transformations: {}".format(rhs)
xrhs += rhs

if is_num(lhs):
Expand Down

0 comments on commit c0562f3

Please sign in to comment.