Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrychu committed Jan 23, 2024
1 parent a9c4866 commit 492e1d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def job_records_to_slack_message(job_records: JOB_RECORDS) -> str:
slack_message += "🔉 Update: New Jobs\n"
for job_record in job_records:
slack_message += "\n"
for key, value in job_record:
for key, value in job_record.items():
slack_message += f"⦿ {key}: {value}"
return slack_message

Expand Down

0 comments on commit 492e1d8

Please sign in to comment.