I have a list of functions that may fail and, if one fails, I don\'t want the script to stop, but to continue with next function.
I am executing it with something like th
You can just put a comment like except Exception as error: # pylint: disable=broad-except that's worked for me actually. I hope it could be work for you.
except Exception as error: # pylint: disable=broad-except