list of properties when triggering locally

This commit is contained in:
Daniel Roth 2026-06-22 16:13:10 +00:00
parent 25c695186b
commit f1a2bbc467

View file

@ -75,7 +75,9 @@ def main() -> None:
f"no_solar={NO_SOLAR}, dry_run={DRY_RUN}) → {SQS_URL}"
)
sqs: Any = cast(Any, boto3.client("sqs")) # pyright: ignore[reportUnknownMemberType]
sqs: Any = cast(
Any, boto3.client("sqs")
) # pyright: ignore[reportUnknownMemberType]
sent = 0
for batch in _batches(ids, _BATCH_SIZE):
entries = [
@ -83,7 +85,7 @@ def main() -> None:
"Id": str(uuid4()).replace("-", "")[:8] + str(i),
"MessageBody": json.dumps(
{
"property_id": pid,
"property_id": [pid],
"portfolio_id": PORTFOLIO_ID,
"scenario_id": SCENARIO_ID,
"no_solar": NO_SOLAR,