From 4191ea1ce3621469a7c2a3751a0a5f2ffd1c9cae Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 23 Sep 2019 02:04:49 -0400 Subject: [PATCH] Remove error suppression --- src/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/run.py b/src/run.py index 1d5c16a..0d6c08e 100644 --- a/src/run.py +++ b/src/run.py @@ -118,8 +118,8 @@ async def on_command_error(ctx, error): with suppress(err.NotFound): if isinstance(error, err.NotFound): print('NOT FOUND') - elif isinstance(error, errext.CommandInvokeError): - print(f'ERROR : {error}') + # elif isinstance(error, errext.CommandInvokeError): + # print(f'ERROR : {error}') elif isinstance(error, err.Forbidden): pass elif isinstance(error, errext.CommandOnCooldown):