Skip to content

Commit bba7a7c

Browse files
committed
sty: whitespaces
1 parent c4a249a commit bba7a7c

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

doc/users/config_file.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ Execution
7474

7575
*display_variable*
7676
Override the ``$DISPLAY`` environment variable for interfaces that require
77-
an X server. This option is useful if there is a running X server, but
78-
``$DISPLAY`` was not defined in nipype's environment. For example, if an X
77+
an X server. This option is useful if there is a running X server, but
78+
``$DISPLAY`` was not defined in nipype's environment. For example, if an X
7979
server is listening on the default port of 6000, set ``display_variable = :0``
80-
to enable nipype interfaces to use it. It may also point to displays provided
81-
by VNC, `xnest <http://www.x.org/archive/X11R7.5/doc/man/man1/Xnest.1.html>`_
80+
to enable nipype interfaces to use it. It may also point to displays provided
81+
by VNC, `xnest <http://www.x.org/archive/X11R7.5/doc/man/man1/Xnest.1.html>`_
8282
or `Xvfb <http://www.x.org/archive/X11R6.8.1/doc/Xvfb.1.html>`_.
8383
If neither ``display_variable`` nor the ``$DISPLAY`` environment variable are
8484
set, nipype will try to configure a new virtual server using Xvfb.

nipype/algorithms/tests/test_mesh_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
@pytest.mark.skipif(VTKInfo.no_tvtk(), reason="tvtk is not installed")
1717
def test_ident_distances(tmpdir):
18-
tmpdir.chdir()
18+
tmpdir.chdir()
1919

2020
in_surf = example_data('surf01.vtk')
2121
dist_ident = m.ComputeMeshWarp()

nipype/interfaces/ants/tests/test_resampling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
2-
# vi: set ft=python sts=4 ts=4 sw=4 et:
2+
# vi: set ft=python sts=4 ts=4 sw=4 et:
33

44
from nipype.interfaces.ants import WarpImageMultiTransform, WarpTimeSeriesImageMultiTransform
55
import os
@@ -66,7 +66,7 @@ def create_wtsimt():
6666
def test_WarpTimeSeriesImageMultiTransform(change_dir, create_wtsimt):
6767
wtsimt = create_wtsimt
6868
assert wtsimt.cmdline == 'WarpTimeSeriesImageMultiTransform 4 resting.nii resting_wtsimt.nii \
69-
-R ants_deformed.nii.gz ants_Warp.nii.gz ants_Affine.txt'
69+
-R ants_deformed.nii.gz ants_Warp.nii.gz ants_Affine.txt'
7070

7171

7272
def test_WarpTimeSeriesImageMultiTransform_invaffine(change_dir, create_wtsimt):

nipype/interfaces/cmtk/tests/test_nbs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ def test_importerror(creating_graphs, tmpdir):
3131
graphlist = creating_graphs
3232
group1 = graphlist[:3]
3333
group2 = graphlist[3:]
34-
34+
3535
nbs = NetworkBasedStatistic()
3636
nbs.inputs.in_group1 = group1
3737
nbs.inputs.in_group2 = group2
3838
nbs.inputs.edge_key = "weight"
39-
39+
4040
with pytest.raises(ImportError) as e:
4141
nbs.run()
4242
assert "cviewer library is not available" == str(e.value)

nipype/interfaces/niftyfit/asl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ class FitAsl(NiftyFitCommand):
147147
>>> from nipype.interfaces import niftyfit
148148
>>> node = niftyfit.FitAsl()
149149
>>> node.inputs.source_file = 'asl.nii.gz'
150-
>>> node.cmdline
150+
>>> node.cmdline
151151
'fit_asl -source asl.nii.gz -cbf asl_cbf.nii.gz -error asl_error.nii.gz \
152152
-syn asl_syn.nii.gz'
153153

nipype/pipeline/engine/tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_identitynode_removal(tmpdir):
2323
def test_function(arg1, arg2, arg3):
2424
import numpy as np
2525
return (np.array(arg1) + arg2 + arg3).tolist()
26-
26+
2727

2828
wf = pe.Workflow(name="testidentity", base_dir=tmpdir.strpath)
2929

0 commit comments

Comments
 (0)