From 29cf34c102971e1ffbff3681577f70e4ba9608dd Mon Sep 17 00:00:00 2001 From: merc1er Date: Mon, 10 Jun 2024 11:05:29 +0700 Subject: [PATCH] Fix string --- tipbot/rates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tipbot/rates.py b/tipbot/rates.py index 9a7c9a9..48ac163 100644 --- a/tipbot/rates.py +++ b/tipbot/rates.py @@ -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)