Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fileformats/core/fileset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ def sample(
mime_like = cls.mime_like
except FormatDefinitionError:
mime_like = cls.__module__ + "." + cls.__name__
raise FormatMismatchError(
raise NotImplementedError(
f"File paths generated by override of FileSet.generate_sample_data() "
f"({fspaths}) do not match '{mime_like}' file type. A more specific "
f"implementation is required. Reason:\n\n{e}"
Expand Down
Loading