From 5a1cf288927e63c3e6f60a08d2d8fcd8a20aaec9 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 19 Jun 2026 13:20:25 +0000 Subject: [PATCH] =?UTF-8?q?Route=20a=20glazing=20override=20row=20through?= =?UTF-8?q?=20the=20glazing=20overlay=20mapper=20=F0=9F=9F=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- repositories/property/landlord_override_overlays.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/repositories/property/landlord_override_overlays.py b/repositories/property/landlord_override_overlays.py index 9d0f2fc7..624487eb 100644 --- a/repositories/property/landlord_override_overlays.py +++ b/repositories/property/landlord_override_overlays.py @@ -29,6 +29,7 @@ from domain.epc.property_overlays.attribute_overlay import ( built_form_overlay_for, property_type_overlay_for, ) +from domain.epc.property_overlays.glazing_overlay import glazing_overlay_for from domain.epc.property_overlays.main_fuel_overlay import fuel_overlay_for from domain.epc.property_overlays.roof_type_overlay import roof_overlay_for from domain.epc.property_overlays.wall_type_overlay import wall_overlay_for @@ -45,6 +46,7 @@ _COMPONENT_OVERLAYS: dict[str, Callable[[str, int], Optional[EpcSimulation]]] = "property_type": property_type_overlay_for, "built_form_type": built_form_overlay_for, "main_fuel": fuel_overlay_for, + "glazing": glazing_overlay_for, }