mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
21 lines
1.1 KiB
Python
21 lines
1.1 KiB
Python
from etl.epc_clean.epc_attributes.FloorAttributes import FloorAttributes
|
|
from etl.epc_clean.epc_attributes.HotWaterAttributes import HotWaterAttributes
|
|
from etl.epc_clean.epc_attributes.MainFuelAttributes import MainFuelAttributes
|
|
from etl.epc_clean.epc_attributes.MainheatAttributes import MainHeatAttributes
|
|
from etl.epc_clean.epc_attributes.MainheatControlAttributes import MainheatControlAttributes
|
|
from etl.epc_clean.epc_attributes.RoofAttributes import RoofAttributes
|
|
from etl.epc_clean.epc_attributes.WallAttributes import WallAttributes
|
|
from etl.epc_clean.epc_attributes.WindowAttributes import WindowAttributes
|
|
from etl.epc_clean.epc_attributes.LightingAttributes import LightingAttributes
|
|
|
|
all_cleaner_map = {
|
|
'floor-description': FloorAttributes,
|
|
'hotwater-description': HotWaterAttributes,
|
|
'main-fuel': MainFuelAttributes,
|
|
'mainheat-description': MainHeatAttributes,
|
|
'mainheatcont-description': MainheatControlAttributes,
|
|
'roof-description': RoofAttributes,
|
|
'walls-description': WallAttributes,
|
|
'windows-description': WindowAttributes,
|
|
'lighting-description': LightingAttributes,
|
|
}
|