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
On line 72 of Article.py, there is a bare except statement with no exception type. In python, it is best to handle exceptions by giving them a specific exception type. This way, you are able to handle exceptions based on their specified exception-type.
The text was updated successfully, but these errors were encountered:
We also found this error. Another reason for not using a bare except is to appropriately throw an error that the developer did not expect to encounter.
On line 72 of Article.py, there is a bare except statement with no exception type. In python, it is best to handle exceptions by giving them a specific exception type. This way, you are able to handle exceptions based on their specified exception-type.
The text was updated successfully, but these errors were encountered: