Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ayazabbas committed May 13, 2024
1 parent 0f88050 commit 6d2d4e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyth_observer/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def send(self):
event_content = self.check.error_message()
event_title = event_content["msg"]
event_text = ""
for key, value in event_content:
for key, value in event_content.items():
event_text += f"{key}: {value}\n"

# An example is: PriceFeedOfflineCheck-Crypto.AAVE/USD
Expand Down

0 comments on commit 6d2d4e0

Please sign in to comment.