I have just one question.
In pycharm we get warning for except block like below
try:
<code>
except Exception: #=> Too broad exception clause
<code>
Just want to know apart from best practice and all, what is harm in doing so. Does it increase complexity? If there is any negative point of this please provide some official docs too.
Edit: I know my example was misleading. If I was talking about bare except block then I would have mentioned that. I have updated my example, which gives same warning.