Skip to content

Commit

Permalink
Include fin periods in project_period results (#1059)
Browse files Browse the repository at this point in the history
  • Loading branch information
anamileva authored Oct 26, 2023
1 parent 4190376 commit ab66a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gridpath/project/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def export_results(scenario_directory, subproblem, stage, m, d):
m.technology[prj],
m.load_zone[prj],
]
for (prj, prd) in m.PRJ_OPR_PRDS
for (prj, prd) in set(m.PRJ_OPR_PRDS | m.PRJ_FIN_PRDS)
],
).set_index(["project", "period"])

Expand Down

0 comments on commit ab66a0e

Please sign in to comment.