Handle limited insulation case

This commit is contained in:
Khalim Conn-Kowlessar 2023-06-08 10:05:17 +01:00
parent 2a2fd4fe3a
commit 70a2284a75

View file

@ -55,6 +55,8 @@ def handler():
def search_description_options(desc):
if desc == "insulated":
return "average"
if desc == "limited":
return "below average"
raise Exception("Handle me")
def find_insulation_thickness(description_lower, is_pitched, is_roof_room, is_flat):