Added wood chips case to fuel

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-01 17:49:09 +01:00
parent 5f1fe923e7
commit 322cd2b11d
2 changed files with 5 additions and 2 deletions

View file

@ -20,7 +20,8 @@ class MainFuelAttributes(BaseUtility):
'gas',
'anthracite',
'smokeless coal',
'house coal'
'house coal',
'wood chips',
]
COMPLEX_FUEL_KEYWORDS = [

View file

@ -56,5 +56,7 @@ mainfuel_cases = [
{
'original_description': 'To be used only when there is no heating/hot-water system',
'fuel_type': 'unknown', 'tariff_type': None, 'is_community': False,
'no_individual_heating_or_community_network': True, 'complex_fuel_type': None}
'no_individual_heating_or_community_network': True, 'complex_fuel_type': None},
{'original_description': 'wood chips', 'fuel_type': 'wood chips', 'tariff_type': None, 'is_community': False,
'no_individual_heating_or_community_network': False, 'complex_fuel_type': None}
]