Tighten up bare except
s around the codebase (would also fix E722 warnings)
#48
Labels
except
s around the codebase (would also fix E722 warnings)
#48
There are 9 bare
except:
in the codebase.I won't explain why it's discouraged, because Flake8 F722 does it well already.
This could be solved by either really thinking about what the
Exception
s trying to be caught are, or by usingexcept Exception:
instead to improve things slightly.The text was updated successfully, but these errors were encountered: