mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
12 lines
339 B
Python
12 lines
339 B
Python
"""One-time re-classification of water-heating overrides funnelled into house coal.
|
|
|
|
Placeholder — decision function stubbed; filled in GREEN.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Iterable
|
|
|
|
|
|
def water_heating_corrections(stored: Iterable[tuple[str, str]]) -> dict[str, str]:
|
|
raise NotImplementedError
|