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
There are far too many try statements in the code as it stands now which encompas too much code. Especially egregious are the parts where you catch an exception only to raise one again (see for instance in data_handling.py. In that case it is really bad because you print "Data not found" even if for instance the read failed for another reason.
The text was updated successfully, but these errors were encountered:
There are far too many
try
statements in the code as it stands now which encompas too much code. Especially egregious are the parts where you catch an exception only to raise one again (see for instance indata_handling.py
. In that case it is really bad because you print "Data not found" even if for instance the read failed for another reason.The text was updated successfully, but these errors were encountered: