From b85db926edeb3644f431b2b44fdb6b46922acd97 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 19 Jun 2026 12:23:52 +0000 Subject: [PATCH] =?UTF-8?q?Route=20a=20main=5Ffuel=20override=20row=20thro?= =?UTF-8?q?ugh=20the=20fuel=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 ab8d7ca3..9d0f2fc7 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.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 from domain.modelling.simulation import EpcSimulation @@ -43,6 +44,7 @@ _COMPONENT_OVERLAYS: dict[str, Callable[[str, int], Optional[EpcSimulation]]] = "roof_type": roof_overlay_for, "property_type": property_type_overlay_for, "built_form_type": built_form_overlay_for, + "main_fuel": fuel_overlay_for, }