From b3b2021a1bb96a711208a673286e1211761f0c82 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 3 Oct 2024 10:41:42 +0100 Subject: [PATCH] added floors and leds measure types --- recommendations/FloorRecommendations.py | 1 + recommendations/LightingRecommendations.py | 1 + 2 files changed, 2 insertions(+) diff --git a/recommendations/FloorRecommendations.py b/recommendations/FloorRecommendations.py index d82162da..25741e7a 100644 --- a/recommendations/FloorRecommendations.py +++ b/recommendations/FloorRecommendations.py @@ -241,6 +241,7 @@ class FloorRecommendations(Definitions): ), ], "type": material["type"], + "measure_type": material["type"], # This is distinct between suspended and solid floor "description": self._make_floor_description(material), "starting_u_value": u_value, "new_u_value": new_u_value, diff --git a/recommendations/LightingRecommendations.py b/recommendations/LightingRecommendations.py index 2b0e8724..f9a1d63a 100644 --- a/recommendations/LightingRecommendations.py +++ b/recommendations/LightingRecommendations.py @@ -152,6 +152,7 @@ class LightingRecommendations: "phase": phase, "parts": [], "type": "low_energy_lighting", + "measure_type": "low_energy_lighting", "description": description, "starting_u_value": None, "new_u_value": None,