Skip to content

Commit 454c6ac

Browse files
committed
add documentation
1 parent c9eea71 commit 454c6ac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

nipype/interfaces/base/core.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,14 @@ class Interface(object):
7171

7272
@property
7373
def can_resume(self):
74-
"""defines if the interface can reuse partial results after interruption"""
74+
"""Defines if the interface can reuse partial results after interruption.
75+
Only applies to interfaces being run within a workflow context."""
7576
return self._can_resume
7677

7778
@property
7879
def always_run(self):
79-
"""should the interface be always run even if the inputs were not changed?"""
80+
"""Should the interface be always run even if the inputs were not changed?
81+
Only applies to interfaces being run within a workflow context."""
8082
return self._always_run
8183

8284
@property

0 commit comments

Comments
 (0)