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
In the recent v0.0.2 release the raising of errors if files do not exist at the given location /can not be found isn't quite consistent across the supported filetypes.
The load_ibw() function does have an explicit exception check for FileNotFound but within this there is no raise to ensure the error is raised when encountered. Instead it progresses and we observe an UnboundLocalError.
asd.py
The load_asd() function does not currently have an explicit except/raise for FileNotFound.
The text was updated successfully, but these errors were encountered:
In the recent
v0.0.2
release the raising of errors if files do not exist at the given location /can not be found isn't quite consistent across the supported filetypes.FileNotFound
error.spm
.jpk
.ibw
.gwy
asd.py
ibw.py
The
load_ibw()
function does have an explicit exception check forFileNotFound
but within this there is noraise
to ensure the error is raised when encountered. Instead it progresses and we observe anUnboundLocalError
.asd.py
The
load_asd()
function does not currently have an explicitexcept
/raise
forFileNotFound
.The text was updated successfully, but these errors were encountered: