Skip to content

Commit 6cb3ccf

Browse files
committed
comment out immutable dict wrapper for testing
1 parent e560f7b commit 6cb3ccf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scout/ecm_prep.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1608,7 +1608,7 @@ def __init__(self, base_dir, handyfiles, opts, allow_overwrite=False):
16081608
"windows solar", "equipment gain", "people gain",
16091609
"other heat gain")
16101610
self._allow_overwrite = allow_overwrite
1611-
self._wrap_dicts()
1611+
# self._wrap_dicts()
16121612
self._initialized = True
16131613

16141614
def _wrap_dicts(self):
@@ -2063,8 +2063,8 @@ def __init__(
20632063
# self.handyvars = copy.deepcopy(handyvars)
20642064
self.handyvars = handyvars
20652065
self.sf_to_house = {}
2066-
self.tsv_hourly_price = copy.deepcopy(handyvars.tsv_hourly_price.to_dict())
2067-
self.tsv_hourly_emissions = copy.deepcopy(handyvars.tsv_hourly_emissions.to_dict())
2066+
self.tsv_hourly_price = copy.deepcopy(handyvars.tsv_hourly_price)
2067+
self.tsv_hourly_emissions = copy.deepcopy(handyvars.tsv_hourly_emissions)
20682068
# Set the rate of baseline retrofitting for ECM stock-and-flow calcs
20692069
try:
20702070
# Check first to see whether pulling up retrofit rate errors

0 commit comments

Comments
 (0)