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
I used the GitHub search to try to find a similar issue and didn't find one.
I searched the Marvin documentation for this issue.
Bug summary
Loading a marvin.Image from a local file raises a value error -- please see below. The error comes because the split method is being called on a PosixPath object, which does not have this method. The fix is to change line 297 of marvin/types.py to format = path.suffix.lstrip('.').
I'm happy to give a pull request with this small change if its helpful.
First check
Bug summary
Loading a marvin.Image from a local file raises a value error -- please see below. The error comes because the split method is being called on a PosixPath object, which does not have this method. The fix is to change line 297 of marvin/types.py to
format = path.suffix.lstrip('.')
.I'm happy to give a pull request with this small change if its helpful.
Reproduction
Error
Versions
Additional context
No response
The text was updated successfully, but these errors were encountered: