Skip to content

Commit 115b227

Browse files
bpinsardyarikoptic
authored andcommitted
fix test, custom_seqinfo has to be hashable
1 parent 4afc7df commit 115b227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

heudiconv/heuristics/convertall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def custom_seqinfo(wrapper: dw.Wrapper, series_files: list[str], **kw: Any) -> t
2121
# for already loaded DICOM data, and including storing/returning
2222
# the sample series file as was requested
2323
# in https://github.com/nipy/heudiconv/pull/333
24-
return wrapper.affine, series_files[0]
24+
return wrapper.affine.tostring(), series_files[0]
2525

2626

2727
def infotodict(

0 commit comments

Comments
 (0)