From 9fb0a59f9882394fd3db8de1de584675f0973d89 Mon Sep 17 00:00:00 2001 From: DrBot7 <46543473+DrBot7@users.noreply.github.com> Date: Fri, 8 Jan 2021 12:41:05 -0600 Subject: [PATCH] Don't try/catch --- bot.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bot.py b/bot.py index 723ae23..302492c 100644 --- a/bot.py +++ b/bot.py @@ -217,12 +217,8 @@ async def on_message(message): await message.channel.send(embed=embed_var) timings = bot.get_cog('Timings') - try: - await timings.analyze_timings(message) - except TypeError: - await message.channel.send("Uhh I seem to be broken. Please wait one moment as I get a dev to fix me..." - "\n<@322764955516665856> YOU GOT A BUG COME FIX IT.") + await timings.analyze_timings(message) await bot.process_commands(message)