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
The code has a lot of except Exception that is not only a bad practice but harmful when trying to catch or debug other exceptions in code. In each case we must list all expected exceptions, however painful it is.
The code has a lot of
except Exceptionthat is not only a bad practice but harmful when trying to catch or debug other exceptions in code. In each case we must list all expected exceptions, however painful it is.