Route a main_fuel override row through the fuel overlay mapper 🟩

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jun-te Kim 2026-06-19 12:23:52 +00:00
parent 991eb74132
commit b85db926ed

View file

@ -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,
}