Skip to content

Commit

Permalink
Run ruff.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Nov 9, 2024
1 parent 39c6c85 commit c92f653
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fmriprep/utils/bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ def get_associated(source_files, query, entity_overrides, layout):
query.update(entity_overrides)
associated = []
for source_file in source_files:
associated.append(layout.get_nearest(source_file, strict=True,**query))
associated.append(layout.get_nearest(source_file, strict=True, **query))

if len(associated) not in (0, len(source_files)):
raise ValueError(
Expand Down
2 changes: 1 addition & 1 deletion fmriprep/workflows/bold/fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
)
from ...utils.bids import extract_entities, get_associated
from ...utils.misc import estimate_bold_mem_usage
from .denoise import init_bold_dwidenoise_wf

# BOLD workflows
from .hmc import init_bold_hmc_wf
from .denoise import init_bold_dwidenoise_wf
from .outputs import (
init_ds_boldmask_wf,
init_ds_boldref_wf,
Expand Down

0 comments on commit c92f653

Please sign in to comment.