Skip to content

Commit 61c4ff5

Browse files
committed
Puts a dot in front of the utils import
1 parent 6aa709c commit 61c4ff5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

nipype/workflows/smri/freesurfer/autorecon1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from nipype.interfaces.utility import Function,IdentityInterface
55
import nipype.pipeline.engine as pe # pypeline engine
66
from nipype.interfaces.freesurfer import *
7-
from utils import copy_file, copy_files
7+
from .utils import copy_file, copy_files
88

99
def checkT1s(T1_files, cw256=False):
1010
"""Verifying size of inputs and setting workflow parameters"""

nipype/workflows/smri/freesurfer/autorecon2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from nipype.interfaces.utility import Function, IdentityInterface, Merge
44
import nipype.pipeline.engine as pe # pypeline engine
55
from nipype.interfaces.freesurfer import *
6-
from utils import copy_file
6+
from .utils import copy_file
77

88
def copy_ltas(in_file, subjects_dir, subject_id, long_template):
99
import os

nipype/workflows/smri/freesurfer/autorecon3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from nipype.interfaces.utility import Function, IdentityInterface, Merge
44
import nipype.pipeline.engine as pe # pypeline engine
55
from nipype.interfaces.freesurfer import *
6-
from ba_maps import create_ba_maps_wf
7-
from utils import createsrcsubj
6+
from .ba_maps import create_ba_maps_wf
7+
from .utils import createsrcsubj
88
from nipype.interfaces.io import DataGrabber
99

1010
def create_AutoRecon3(name="AutoRecon3", qcache=False, plugin_args=None):

0 commit comments

Comments
 (0)