Skip to content

Commit

Permalink
fixed wrong string method in highs api
Browse files Browse the repository at this point in the history
  • Loading branch information
postlogist committed Aug 3, 2023
1 parent 6a8e463 commit 3c56a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulp/apis/highs_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def actualSolve(self, lp):
option += f"={next(options)}"

# identify cli options by a leading dash (-) and treat other options as file options
if option.starts_with("-"):
if option.startswith("-"):
command.append(option)
else:
file_options.append(option)
Expand Down

0 comments on commit 3c56a82

Please sign in to comment.