junepark678 / GIRRewrite

Exception caught is very general PYL-W0703
Anti-pattern
Major
a year agoa year old
Catching too general exception Exception
124        the_webhook: discord.Webhook = discord.Webhook.from_url(webhook_url, session=session)
125        try:
126            await the_webhook.send(**message_body)
127        except Exception:128            pass
129
130class Logger:
Catching too general exception Exception
464                    else:
465                        await info.message.clear_reactions()
466                    return None, None
467                except Exception:468                    pass
469            else:
470                if info.delete_after:
Catching too general exception Exception
413                if info.convertor in [str, int, pytimeparse.parse]:
414                    try:
415                        ret = info.convertor(response.content)
416                    except Exception:417                        ret = None
418
419                    if ret is None:
Catching too general exception Exception
365                    else:
366                        await info.message.clear_reactions()
367                    return None, None
368                except Exception:369                    pass
370            else:
371                if info.delete_after:
Catching too general exception Exception
299                            ret = info.convertor(response.content), response
300                        else:
301                            ret = info.convertor(response.content)
302                    except Exception:303                        ret = None
304                    
305                    if ret is None: