Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Aug 2, 2024
1 parent b86630c commit 17df33c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fmripost_aroma/workflows/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

import os
import sys
from collections import defaultdict
from copy import deepcopy

import yaml
Expand Down Expand Up @@ -303,7 +304,7 @@ def init_single_run_wf(bold_file):

entities = extract_entities(bold_file)

Check warning on line 305 in src/fmripost_aroma/workflows/base.py

View check run for this annotation

Codecov / codecov/patch

src/fmripost_aroma/workflows/base.py#L305

Added line #L305 was not covered by tests

functional_cache = {}
functional_cache = defaultdict(list, {})

Check warning on line 307 in src/fmripost_aroma/workflows/base.py

View check run for this annotation

Codecov / codecov/patch

src/fmripost_aroma/workflows/base.py#L307

Added line #L307 was not covered by tests
if config.execution.derivatives:
# Collect native-space derivatives and transforms
for deriv_dir in config.execution.derivatives.values():
Expand Down

0 comments on commit 17df33c

Please sign in to comment.