Clarify REFETCH_EPC/REPREDICT_EPC comments — both flags skip-if-stored, not never-fetch

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Daniel Roth 2026-06-26 10:20:29 +00:00
parent 5c3bde0cf5
commit b1fd9d9368

View file

@ -45,12 +45,14 @@ DRY_RUN: bool = False
# False → Lambda skips the Google Solar fetch (re-uses stored Solar data).
REFETCH_SOLAR: bool = True
# False → Lambda re-uses stored lodged EPCs instead of calling the EPC API
# (falls back to live API call when no stored EPC exists for a property).
# False → skip the EPC API call for properties that already have a stored lodged
# EPC; the API is still called for any property that has no stored lodged EPC.
REFETCH_EPC: bool = True
# False → Lambda re-uses stored predicted EPCs instead of re-running prediction
# (falls back to live prediction when no stored predicted EPC exists).
# False → skip live EPC prediction for properties that already have a stored
# predicted EPC; live prediction still runs for any property that reaches the
# prediction branch with no stored predicted EPC. Only relevant for properties
# without a lodged EPC (either stored or freshly fetched).
REPREDICT_EPC: bool = True
# ---------------------------------------------------------------------------