From 31cd7e8b973a34f538e39dc818d6e382ec9c5a84 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 15 Jun 2024 23:01:31 +0100 Subject: [PATCH] Include slug in launch summary --- agenda/thespacedevs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/agenda/thespacedevs.py b/agenda/thespacedevs.py index 01a27e5..15ad455 100644 --- a/agenda/thespacedevs.py +++ b/agenda/thespacedevs.py @@ -125,6 +125,7 @@ def summarize_launch(launch: Launch) -> Summary: return { "name": launch.get("name"), + "slug": launch["slug"], "status": launch.get("status"), "net": launch.get("net"), "net_precision": net_precision,