You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 28, 2023. It is now read-only.
It might be called: Try-Except. But it also have a else and a finally.
They should be used when possible.
Have as little as possible in the Try-scope.
As a Reminder:
Try -> Try not to raise an exception.
Except -> Exception was raised.
Else -> No exceptions was raised.
Finally -> Always executed as last.
And if possible, do not have a catch-all exception. Specific exception please.