From 3fe32766bd4e209bbaaf731fc81de0f87806f2da Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 15 Aug 2023 19:43:16 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- mne/tests/test_epochs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mne/tests/test_epochs.py b/mne/tests/test_epochs.py index 4f2a57708e9..fd7a7957b54 100644 --- a/mne/tests/test_epochs.py +++ b/mne/tests/test_epochs.py @@ -1490,7 +1490,7 @@ def factory(n_epochs, metadata=False, concat=False): n_ch, fs = 100, 1000.0 n_times = int(round(fs * (n_epochs + 1))) raw_data = np.random.RandomState(0).randn(n_ch, n_times) - raw = mne.io.RawArray(raw_data , mne.create_info(n_ch, fs)) + raw = mne.io.RawArray(raw_data, mne.create_info(n_ch, fs)) events = mne.make_fixed_length_events(raw, 1) epochs = mne.Epochs(raw, events) if metadata: @@ -1641,12 +1641,12 @@ def test_saved_fname_no_splitting( "neuromag", "test-epo.fif", "test-epo-1.fif", - marks=pytest.mark.xfail(reason="bug") + marks=pytest.mark.xfail(reason="bug"), ), ("bids", "test_epo.fif", "test_epo.fif"), ("bids", "test_epo.fif", "test_split-01_epo.fif"), ("bids", "test_epo.fif", "test_split-02_epo.fif"), - ] + ], ) def test_splits_overwrite( tmp_path, epochs_to_split, split_naming, dst_fname, existing_fname