From 66bb29a8340d3c5102da92ea9e12a1f3ed0b5622 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 19 Jun 2026 14:06:24 +0000 Subject: [PATCH] =?UTF-8?q?Route=20a=20main=5Fheating=5Fsystem=20override?= =?UTF-8?q?=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 ebceb6cf..6c40d009 100644 --- a/repositories/property/landlord_override_overlays.py +++ b/repositories/property/landlord_override_overlays.py @@ -34,6 +34,9 @@ from domain.epc.property_overlays.construction_age_band_overlay import ( ) 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.main_heating_system_overlay import ( + main_heating_overlay_for, +) from domain.epc.property_overlays.water_heating_overlay import ( water_heating_overlay_for, ) @@ -55,6 +58,7 @@ _COMPONENT_OVERLAYS: dict[str, Callable[[str, int], Optional[EpcSimulation]]] = "glazing": glazing_overlay_for, "construction_age_band": age_band_overlay_for, "water_heating": water_heating_overlay_for, + "main_heating_system": main_heating_overlay_for, }