mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Handle ceiling insulated phrase
This commit is contained in:
parent
70a2284a75
commit
6b86543ce4
1 changed files with 4 additions and 1 deletions
|
|
@ -77,7 +77,10 @@ def handler():
|
|||
|
||||
if is_roof_room:
|
||||
# Just search for specific phrases
|
||||
desc = description_lower.split("roof room(s),")[-1].lstrip().split(" ")[0]
|
||||
desc_split = description_lower.split("roof room(s),")[-1].lstrip()
|
||||
if desc_split == "ceiling insulated":
|
||||
return "average"
|
||||
desc = desc_split.split(" ")[0]
|
||||
return search_description_options(desc)
|
||||
|
||||
if is_flat:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue