Skip to content

Commit 83a50d4

Browse files
committed
STY: ruff format smriprep [git-blame-ignore-rev]
1 parent fb65496 commit 83a50d4

File tree

12 files changed

+12
-0
lines changed

12 files changed

+12
-0
lines changed

smriprep/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
99
1010
"""
11+
1112
from .__about__ import (
1213
__copyright__,
1314
__credits__,

smriprep/conf/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""sMRIPrep settings."""
2+
23
from templateflow.api import templates as _get_templates
34

45
TF_TEMPLATES = tuple(_get_templates())

smriprep/interfaces/freesurfer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# https://www.nipreps.org/community/licensing/
2222
#
2323
"""Nipype's recon-all replacement."""
24+
2425
import os
2526

2627
from looseversion import LooseVersion

smriprep/interfaces/gifti.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Interfaces for manipulating GIFTI files."""
2+
23
import os
34

45
import nibabel as nb

smriprep/interfaces/surf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# https://www.nipreps.org/community/licensing/
2222
#
2323
"""Handling surfaces."""
24+
2425
import os
2526
from pathlib import Path
2627

smriprep/interfaces/templateflow.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# https://www.nipreps.org/community/licensing/
2222
#
2323
"""Interfaces to get templates from TemplateFlow."""
24+
2425
import logging
2526

2627
from nipype.interfaces.base import (

smriprep/utils/bids.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# https://www.nipreps.org/community/licensing/
2222
#
2323
"""Utilities to handle BIDS inputs."""
24+
2425
from json import loads
2526
from pathlib import Path
2627

smriprep/workflows/anatomical.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# https://www.nipreps.org/community/licensing/
2222
#
2323
"""Anatomical reference preprocessing workflows."""
24+
2425
import typing as ty
2526

2627
from nipype import logging

smriprep/workflows/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# https://www.nipreps.org/community/licensing/
2222
#
2323
"""*sMRIPrep* base processing workflows."""
24+
2425
import os
2526
import sys
2627
from copy import deepcopy

smriprep/workflows/fit/registration.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# https://www.nipreps.org/community/licensing/
2222
#
2323
"""Spatial normalization workflows."""
24+
2425
from collections import defaultdict
2526

2627
from nipype.interfaces import ants

0 commit comments

Comments
 (0)