mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
6 lines
237 B
Python
6 lines
237 B
Python
from epc_data.cleaning.cleaning_utils import extract_thermal_transmittence
|
|
|
|
|
|
def test__extract_thermal_transmittence():
|
|
description = "U-value of 2.3 w/m-¦k"
|
|
assert extract_thermal_transmittence(description) == (2.3, "w/m-¦k")
|