Skip to content

Commit

Permalink
Fix two small typos in report
Browse files Browse the repository at this point in the history
  • Loading branch information
markbotterill authored May 2, 2024
1 parent 750c092 commit 9309517
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/scripts/send_slack_report/send_slack_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def classify_initial_queries():
for k, v in tally_json.items():
percentage = v / total_initial_queries * 100
classifications += f"There were {v} queries (representing {percentage:.1f}% of\
all initial queries) about {k}\n"
all initial queries) about {k}\n"
return classifications


Expand All @@ -85,7 +85,7 @@ def send_message(user_id, message):
SLACK_TOKEN = os.environ["SLACK_BOT_TOKEN"]
if not SLACK_TOKEN:
logger.debug(
"Slack OAuth token not provided. Check env prod template for guindace"
"Slack OAuth token not provided. Check env prod template for guidance"
)
return None
logger.info("Initializing Slack client")
Expand Down

0 comments on commit 9309517

Please sign in to comment.