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
Provide some sort of fail-fast feedback for invalid "file_type" values.
Currently if the configuration file contains an unsupported value for "file_type" then data.file_loader() silently returns an implicit None for the loader, resulting in a later error of:
File ".../forest/forest/view.py", line 19, in render
self.source.data = self.loader.image(state)
AttributeError: 'NoneType' object has no attribute 'image'
The text was updated successfully, but these errors were encountered:
Provide some sort of fail-fast feedback for invalid "file_type" values.
Currently if the configuration file contains an unsupported value for "file_type" then data.file_loader() silently returns an implicit
None
for the loader, resulting in a later error of:The text was updated successfully, but these errors were encountered: