From b13166742dd0849b1b1acccae650eeefac52b14e Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 19 Jun 2026 13:42:43 +0000 Subject: [PATCH] =?UTF-8?q?Route=20a=20construction=5Fage=5Fband=20overrid?= =?UTF-8?q?e=20row=20through=20its=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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/repositories/property/landlord_override_overlays.py b/repositories/property/landlord_override_overlays.py index 624487eb..fd6d5f68 100644 --- a/repositories/property/landlord_override_overlays.py +++ b/repositories/property/landlord_override_overlays.py @@ -29,6 +29,9 @@ from domain.epc.property_overlays.attribute_overlay import ( built_form_overlay_for, property_type_overlay_for, ) +from domain.epc.property_overlays.construction_age_band_overlay import ( + age_band_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 @@ -47,6 +50,7 @@ _COMPONENT_OVERLAYS: dict[str, Callable[[str, int], Optional[EpcSimulation]]] = "built_form_type": built_form_overlay_for, "main_fuel": fuel_overlay_for, "glazing": glazing_overlay_for, + "construction_age_band": age_band_overlay_for, }