Model/asset_list/mappings/exising_pv.py
Khalim Conn-Kowlessar 978deb286b debugging remapper
2025-02-19 22:32:05 +00:00

12 lines
240 B
Python

STANDARD_EXISTING_PV = {
"already has PV", "no PV", "unknown"
}
EXISTING_PV_MAPPINGS = {
"NO": "no PV",
"YES": "already has PV",
"no": "no PV",
"yes": "already has PV",
True: "already has PV",
False: "no PV",
}