Debugging windows

This commit is contained in:
Khalim Conn-Kowlessar 2023-09-07 16:29:22 +03:00
parent dcf611e02b
commit 5d91dfe567
3 changed files with 6 additions and 2 deletions

View file

@ -95,7 +95,8 @@ class HotWaterAttributes(Definitions):
WELSH_TEXT = {
"ogçör brif system": "from main system",
"ogçör brif system, adfer gwres nwyon ffliw": "from main system, flue gas heat recovery"
"ogçör brif system, adfer gwres nwyon ffliw": "from main system, flue gas heat recovery",
"bwyler/cylchredydd nwy": "gas boiler/circulator"
}
def __init__(self, description: str):

View file

@ -19,6 +19,7 @@ class WindowAttributes(Definitions):
WELSH_TEXT = {
"gwydrau dwbl llawn": "full double glazing",
"gwydrau dwbl rhannol": "partial double glazing"
}
def __init__(self, description: str):

View file

@ -37,5 +37,7 @@ windows_cases = [
{'original_description': 'Some triple glazing', 'has_glazing': True, 'glazing_coverage': 'partial',
'glazing_type': 'triple', 'no_data': False},
{'original_description': 'Gwydrau dwbl llawn', 'has_glazing': True, 'glazing_coverage': 'full',
'glazing_type': 'double', 'no_data': False}
'glazing_type': 'double', 'no_data': False},
{'original_description': 'Gwydrau dwbl rhannol', 'has_glazing': True, 'glazing_coverage': 'partial',
'glazing_type': 'double', 'no_data': False},
]