We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b574f62 commit e09c7b5Copy full SHA for e09c7b5
fmriprep/workflows/base.py
@@ -435,7 +435,7 @@ def init_single_subject_wf(subject_id: str):
435
# replicate the logic that got us to the pared down set of estimators
436
# here.
437
final_ids = {fmap.bids_id for fmap in fmap_estimators}
438
- unused_ids = [bids_id for bids_id in fm._estimators if bids_id not in final_ids]
+ unused_ids = fm._estimators.keys() - final_ids
439
for bids_id in unused_ids:
440
del fm._estimators[bids_id]
441
0 commit comments