Skip to content

Commit

Permalink
FIX: Name
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Aug 18, 2023
1 parent 4f53c90 commit f17feab
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion mne_bids_pipeline/steps/preprocessing/_08_ptp_reject.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,14 @@ def drop_ptp(
in_files: dict,
) -> dict:
out_files = dict()
out_files["epochs"] = in_files["epochs"].copy().update(processing="clean")
out_files["epochs"] = (
in_files["epochs"]
.copy()
.update(
processing="clean",
split=None,
)
)
msg = f'Input: {in_files["epochs"].basename}'
logger.info(**gen_log_kwargs(message=msg))
msg = f'Output: {out_files["epochs"].basename}'
Expand Down

0 comments on commit f17feab

Please sign in to comment.