Skip to content

Commit c03474e

Browse files
committed
enh: load config first (and trigger a new circleci build)
1 parent 9cb29fc commit c03474e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dmriprep/workflows/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""dMRIPrep base processing workflows."""
2+
from .. import config
23
import sys
34
import os
45
from copy import deepcopy
@@ -14,7 +15,6 @@
1415
from smriprep.workflows.anatomical import init_anat_preproc_wf
1516

1617
from niworkflows.utils.spaces import Reference
17-
from .. import config
1818
from ..interfaces import DerivativesDataSink, BIDSDataGrabber
1919
from ..interfaces.reports import SubjectSummary, AboutSummary
2020
from ..utils.bids import collect_data

dmriprep/workflows/dwi/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""Orchestrating the dMRI-preprocessing workflow."""
2+
from ... import config
23
from nipype.pipeline import engine as pe
34
from nipype.interfaces import utility as niu
45

56
from niworkflows.engine.workflows import LiterateWorkflow as Workflow
6-
from ... import config
77
from ...interfaces.vectors import CheckGradientTable
88
from .util import init_dwi_reference_wf
99
from .outputs import init_reportlets_wf

0 commit comments

Comments
 (0)