mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
240 B
Python
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",
|
|
}
|