mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
fixed bug in mapping electric boiler
This commit is contained in:
parent
20d58aa5d8
commit
8f3c76fde9
1 changed files with 1 additions and 1 deletions
|
|
@ -390,7 +390,7 @@ class Funding:
|
|||
if mainheating["has_ground_source_heat_pump"]:
|
||||
return 'GSHP'
|
||||
|
||||
if mainheating["has_boiler"] and (main_fuel["fuel_type"] == "electric"):
|
||||
if mainheating["has_boiler"] and (main_fuel["fuel_type"] in ["electric", "electricity"]):
|
||||
return 'Electric Boiler'
|
||||
|
||||
if mainheating["has_community_scheme"] and mainheat_energy_eff in ["Good", "Very Good"]:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue