removed stray colon

This commit is contained in:
aaron crate 2024-09-30 06:01:56 +00:00
parent 88dc4b4457
commit 659f2470d4

View File

@ -237,7 +237,7 @@ async def on_message(message):
for item in sorted_products:
product_name = item['description']
price = item['items'][0]['price']['regular']
response += f"- `${price}`: {product_name}: \n"
response += f"- `${price}`: {product_name} \n"
await message.channel.send(response)
except Exception as e:
await message.channel.send(f"`GarfBot Error: {str(e)}`")