Skip to content

Commit c960303

Browse files
committed
Move the definition of the GA ID variable into the function that uses it.
1 parent 7727c86 commit c960303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dmriprep/cli/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def get_parser():
3737
from templateflow.api import templates
3838
from packaging.version import Version
3939
from ..__about__ import __version__
40-
from ..__about__ import __ga_id__
4140
from ..config import NONSTANDARD_REFERENCES
4241
from .version import check_latest, is_flagged
4342

@@ -215,6 +214,7 @@ def main():
215214
from nipype import logging as nlogging
216215
from multiprocessing import set_start_method, Process, Manager
217216
from ..utils.bids import write_derivative_description, validate_input_dir
217+
from ..__about__ import __ga_id__
218218
set_start_method('forkserver')
219219
warnings.showwarning = _warn_redirect
220220
opts = get_parser().parse_args()

0 commit comments

Comments
 (0)