Skip to content

Commit 6a270e2

Browse files
committed
Fixed spaces problem, to make some lines execute _inside_ loop,
rather that at the end of the loop
1 parent 2c7778c commit 6a270e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

heudiconv/convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ def convert(items, converter, scaninfo_suffix, custom_callable, with_prov,
318318
if outname and op.exists(outname):
319319
set_readonly(outname)
320320

321-
if custom_callable is not None:
322-
custom_callable(*item)
321+
if custom_callable is not None:
322+
custom_callable(*item)
323323

324324

325325
def convert_dicom(item_dicoms, bids, prefix,

0 commit comments

Comments
 (0)