Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
whoburg committed Jan 8, 2024
1 parent 2da6324 commit 376bef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/examples/simple_sp.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# create and solve the SP
m = Model(x, constraints)
print(m.localsolve(verbosity=0).summary())
assert abs(m.solution(x) - 0.9) < 1e-6
assert abs(m.solution(x) - 0.9) < 1e-6 # pylint:disable=not-callable

# full interim solutions are available
# pylint: disable=consider-using-f-string
Expand Down

0 comments on commit 376bef9

Please sign in to comment.