Skip to content

Commit 2e64717

Browse files
committed
Merge branch 'wecc' into aggregate_projects
2 parents d0ecd7e + 24d9dd1 commit 2e64717

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

switch_model/wecc/get_inputs/post_process_steps/add_storage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def fetch_df(tab_name, key, config):
2525
url = f"https://docs.google.com/spreadsheet/ccc?key={SHEET_ID}&output=csv&gid={gid}"
2626

2727
df: pd.DataFrame = pd.read_csv(url, index_col=False) \
28-
.replace("FALSE", 0) \
29-
.replace("TRUE", 1)
28+
.replace("FALSE", False) \
29+
.replace("TRUE", True)
3030

3131
if "description" in df.columns:
3232
df = df.drop("description", axis=1)

0 commit comments

Comments
 (0)