We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7273476 commit 6933120Copy full SHA for 6933120
switch_model/wecc/get_inputs/post_process_steps/add_storage.py
@@ -5,7 +5,6 @@
5
the csvs in the inputs folder.
6
"""
7
import pandas as pd
8
-
9
from switch_model.wecc.get_inputs.register_post_process import register_post_process
10
11
@@ -102,11 +101,9 @@ def drop_previous_candidate_storage():
102
101
103
104
@register_post_process(
105
- name="add_storage",
106
msg="Adding storage from Google Sheets",
107
- priority=1, # Increased priority (default is 2) so that it always runs before replace_plants_in_zone_all.py
108
)
109
-def main(config):
+def post_process(config):
110
# Drop previous candidate storage from inputs
111
drop_previous_candidate_storage()
112
0 commit comments