Skip to content

Commit 4621423

Browse files
committed
fix: avoid relative import in nipype node
1 parent da45311 commit 4621423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

heudiconv/dicoms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def embed_nifti(dcmfiles, niftifile, infofile, bids_info, min_meta):
385385
import re
386386

387387
if not min_meta:
388-
from .external.dcmstack import ds
388+
from heudiconv.external.dcmstack import ds
389389
stack = ds.parse_and_stack(dcmfiles, force=True).values()
390390
if len(stack) > 1:
391391
raise ValueError('Found multiple series')

0 commit comments

Comments
 (0)