From 9856a609bdaedfe0ce3fb4ab7f63e2c31468bd0b Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 9 Sep 2024 19:20:52 +0100 Subject: [PATCH] Include probability and weather_concerns --- agenda/thespacedevs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agenda/thespacedevs.py b/agenda/thespacedevs.py index acc6758..e296e54 100644 --- a/agenda/thespacedevs.py +++ b/agenda/thespacedevs.py @@ -143,6 +143,8 @@ def summarize_launch(launch: Launch) -> Summary: "location": launch["pad"]["location"]["name"], "country_code": launch["pad"]["country_code"], "orbit": get_nested(launch, ["mission", "orbit"]), + "probability": launch["probability"], + "weather_concerns": launch["weather_concerns"], }