Skip to content

Commit

Permalink
Fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
merc1er committed Jun 10, 2024
1 parent 7fe58a9 commit 29cf34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tipbot/rates.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def get_rate(update, currency: str = "USD") -> float:
currency = currency.upper()

if currency not in CURRENCY_CODE:
return update.message.reply_text(f"{currency} is not a supported " "currency.")
return update.message.reply_text(f"{currency} is not a supported currency.")

try:
response = requests.get(RATE_API)
Expand Down

0 comments on commit 29cf34c

Please sign in to comment.