From 76c3b1f47dff4a1a0da050031131ef7e5a466509 Mon Sep 17 00:00:00 2001 From: Mason10198 <31994327+Mason10198@users.noreply.github.com> Date: Mon, 31 Jul 2023 17:16:52 -0500 Subject: [PATCH] Change descrip slightly --- SkyDescribe.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/SkyDescribe.py b/SkyDescribe.py index c3621ca..5c12684 100644 --- a/SkyDescribe.py +++ b/SkyDescribe.py @@ -296,8 +296,10 @@ def main(index_or_title): if unique_instances == 1: description = alert_data[0]["description"] else: - description = "{} unique instances of this alert exist. Describing the first instance. {}".format( - unique_instances, alert_data[0]["description"] + description = "There are {} unique instances of {}. Describing the first one. {}".format( + unique_instances, + alert, + alert_data[0]["description"] ) else: @@ -317,7 +319,7 @@ def main(index_or_title): if unique_instances == 1: description = alert_data[0]["description"] else: - description = "There are {} unique instances of {}. Describing the first instance. {}".format( + description = "There are {} unique instances of {}. Describing the first one. {}".format( unique_instances, alert, alert_data[0]["description"]