Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 20, 2025
1 parent 15f42bb commit 7eba0d1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions eye2bids/edf2bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,7 @@ def edf2bids(

if not events_asc_file.exists():
e2b_log.error(
"The following .edf input file could not be converted to .asc:"
f"{input_file}"
f"The following .edf input file could not be converted to .asc:{input_file}"
)

# SIDECARS #
Expand Down Expand Up @@ -564,8 +563,7 @@ def edf2bids(
samples_asc_file = _convert_edf_to_asc_samples(input_file)
if not samples_asc_file.exists():
e2b_log.error(
"The following .edf input file could not be converted to .asc:"
f"{input_file}"
f"The following .edf input file could not be converted to .asc:{input_file}"
)

samples = pd.read_csv(samples_asc_file, sep="\t", header=None)
Expand Down

0 comments on commit 7eba0d1

Please sign in to comment.