Skip to content

Commit abd7f8d

Browse files
committed
sty: white spaces
1 parent 3a9c3f4 commit abd7f8d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

nipype/external/provcopy.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ def provn_representation(self):
359359

360360
def json_representation(self):
361361
return {'$': self._uri, 'type': u'xsd:anyURI'}
362-
362+
363363
def rdf_representation(self):
364364
return URIRef(self.get_uri())
365365

@@ -768,7 +768,7 @@ def rdf(self, graph=None, subj=None):
768768
obj = RDFLiteral(value)
769769
graph.add((subj, pred, obj))
770770
return graph
771-
771+
772772
def is_asserted(self):
773773
return self._asserted
774774

@@ -783,7 +783,7 @@ def is_relation(self):
783783
class ProvElement(ProvRecord):
784784
def is_element(self):
785785
return True
786-
786+
787787
def rdf(self, graph=None):
788788
if graph is None:
789789
graph = Graph()
@@ -1656,15 +1656,15 @@ def rdf(self, graph=None):
16561656
# graph should not None here
16571657
uri = self.get_identifier().rdf_representation()
16581658
graph = Graph(graph.store, uri)
1659-
1659+
16601660
for prefix, namespace in self._namespaces.items():
16611661
graph.bind(prefix, namespace.get_uri())
1662-
1662+
16631663
for record in self._records:
16641664
if record.is_asserted():
16651665
record.rdf(graph)
16661666
return graph
1667-
1667+
16681668
def get_provjson(self, **kw):
16691669
"""Return the `PROV-JSON <http://www.w3.org/Submission/prov-json/>`_ representation for the bundle/document.
16701670

nipype/interfaces/afni/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ class Refit(CommandLine):
193193
_cmd = '3drefit'
194194
input_spec = RefitInputSpec
195195
output_spec = AFNICommandOutputSpec
196-
196+
197197
def _list_outputs(self):
198198
outputs = super(AFNICommand, self)._list_outputs()
199199
outputs["out_file"] = os.path.abspath(self.inputs.in_file)

nipype/interfaces/fsl/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class Merge(FSLCommand):
166166
>>> merger.cmdline
167167
'fslmerge -t functional2_merged.nii.gz functional2.nii functional3.nii'
168168
>>> merger.inputs.tr = 2.25
169-
>>> merger.cmdline
169+
>>> merger.cmdline
170170
'fslmerge -tr functional2_merged.nii.gz functional2.nii functional3.nii 2.25'
171171
"""
172172

0 commit comments

Comments
 (0)