Skip to content

Commit

Permalink
Merge pull request #302 from PyPSA/highs-improve-log
Browse files Browse the repository at this point in the history
solvers: remove dot at end of log file print to be clickable
  • Loading branch information
FabianHofmann authored Jun 10, 2024
2 parents ba30093 + 6c14dd5 commit 8294530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linopy/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def run_highs(
if log_fn is None:
log_fn = model.solver_dir / "highs.log"
solver_options["log_file"] = maybe_convert_path(log_fn)
logger.info(f"Log file at {solver_options['log_file']}.")
logger.info(f"Log file at {solver_options['log_file']}")

for k, v in solver_options.items():
h.setOptionValue(k, v)
Expand Down

0 comments on commit 8294530

Please sign in to comment.