Skip to content

Commit 84b497f

Browse files
committed
run pre-commit hooks
1 parent f7a7b13 commit 84b497f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

bot/utils/quote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async def random_quote(bot: Bot) -> str:
2626
async with bot.http_session.get(RANDOM_QUOTE_URL) as response:
2727
response.raise_for_status()
2828
data = await response.json()
29-
quote = f"{data[0]['q']}\n*\— {data[0]['a']}*"
29+
quote = f"{data[0]['q']}\n*\\{data[0]['a']}*"
3030
return quote
3131

3232

@@ -43,7 +43,7 @@ async def daily_quote(bot: Bot) -> str:
4343
async with bot.http_session.get(DAILY_QUOTE_URL) as resp:
4444
resp.raise_for_status()
4545
data = await resp.json()
46-
quote = f"{data[0]['q']}\n*\— {data[0]['a']}*"
46+
quote = f"{data[0]['q']}\n*\\{data[0]['a']}*"
4747

4848
ttl = seconds_until_midnight_utc()
4949

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)