Treat only specific exceptions, not general ones.
Instead of:
try: anything() except CustomError: pass
when you need to ignore the exception, do instead:
with contextlib.supress(CustomError): anything()