Skip to content

Commit

Permalink
remove line
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Nov 27, 2024
1 parent 1f80998 commit 649422c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions antarest/launcher/adapters/local_launcher/local_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ def _parse_launcher_options(launcher_parameters: LauncherParametersDTO) -> Tuple
# todo: remove this path hard-coded
xpress_dir_path = "my_path"
environment_variables["XPRESSDIR"] = xpress_dir_path
os_sep = "\\" if os.name == "nt" else "/"
environment_variables["XPRESS"] = environment_variables["XPRESSDIR"] + os_sep + "bin"
environment_variables["XPRESS"] = environment_variables["XPRESSDIR"] + os.sep + "bin"
elif "coin" in launcher_parameters.other_options:
solver = ["--use-ortools", "--ortools-solver=coin"]
if solver:
Expand Down

0 comments on commit 649422c

Please sign in to comment.