diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py index c01e5bf2..315f65d9 100644 --- a/hub/city_model_structure/building.py +++ b/hub/city_model_structure/building.py @@ -449,7 +449,7 @@ class Building(CityObject): monthly_values = PeakLoads(self).heating_peak_loads_from_methodology if monthly_values is None: return None - results[cte.MONTH] = [x * cte.WATTS_HOUR_TO_JULES for x in monthly_values] + results[cte.MONTH] = monthly_values results[cte.YEAR] = [max(monthly_values)] return results