wemake-python-styleguide
wemake-python-styleguide copied to clipboard
Too many exceptions in one `except`
try:
...
except (A, B, C, D, E, F, Z, Y, X):
...
This code clearly shows that something is wrong with the exception handling. We need a rule for that.