From 87965fc3c08de47384736984b0e32cfb9ae00597 Mon Sep 17 00:00:00 2001 From: astronobri Date: Sun, 21 Apr 2024 22:51:51 -0400 Subject: [PATCH] Minor aesthetic edits --- omf/models/derUtilityCost.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/omf/models/derUtilityCost.py b/omf/models/derUtilityCost.py index ceed76333..7124764bf 100644 --- a/omf/models/derUtilityCost.py +++ b/omf/models/derUtilityCost.py @@ -210,7 +210,6 @@ def work(modelDir, inputDict): with open(pJoin(__neoMetaModel__._omfDir,"static","testFiles","residential_REopt_results.json")) as f: results = json.load(f) print('Successfully read in REopt test file. \n') - # Assuming results is a list of dictionaries out['PV'] = results['outputs']['PV'] @@ -251,7 +250,6 @@ def work(modelDir, inputDict): vbat = 'Disabled' ## Temporary flag to disable vbat code if vbat == 'Enabled': - print('hello &*************** \n') vbatResults = vb.work(modelDir,inputDict) with open(pJoin(modelDir, 'vbatResults.json'), 'w') as jsonFile: json.dump(vbatResults, jsonFile)