Skip to content

Commit

Permalink
Fix checking if results should be stored after the optimisation
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Oct 30, 2023
1 parent 3bc40f0 commit d475538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etrago/tools/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def lopf(self):
z = (y - x) / 60
logger.info("Time for LOPF [min]: {}".format(round(z, 2)))

if not self.args["csv_export"]:
if self.args["csv_export"]:
path = self.args["csv_export"]
if self.args["temporal_disaggregation"]["active"] is True:
path = path + "/temporally_reduced"
Expand Down

0 comments on commit d475538

Please sign in to comment.