Skip to content

Commit

Permalink
Update nipype/pipeline/engine/nodes.py
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Markiewicz <[email protected]>
  • Loading branch information
mauriliogenovese and effigies authored Jan 19, 2025
1 parent 4298707 commit 3e55598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nipype/pipeline/engine/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def run(self, updatehash=False):
cached, updated = self.is_cached()

# If the node is cached, check on pklz files and finish
if cached and not force_run and (updated or (not updated and updatehash)):
if cached and not force_run and (updated or updatehash):
logger.debug("Only updating node hashes or skipping execution")
inputs_file = op.join(outdir, "_inputs.pklz")
if not op.exists(inputs_file):
Expand Down

0 comments on commit 3e55598

Please sign in to comment.