Skip to content

Commit

Permalink
fixes of fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sappelhoff committed Jul 28, 2024
1 parent 0f53883 commit 05f5e9c
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion examples/bidspath.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
BIDSPath is MNE-BIDS's working horse when it comes to file and folder
operations. Learn here how to use it.
""" # noqa: D400

# Authors: The MNE-BIDS developers
Expand Down
1 change: 0 additions & 1 deletion examples/convert_eeg_to_bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
.. _BrainVision format: https://www.brainproducts.com/support-resources/brainvision-core-data-format-1-0/
.. _CapTrak: https://www.fieldtriptoolbox.org/faq/coordsys/#details-of-the-captrak-coordinate-system
""" # noqa: E501 D205 D400

# Authors: The MNE-BIDS developers
Expand Down
1 change: 0 additions & 1 deletion examples/convert_ieeg_to_bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
.. _appendix VIII: https://bids-specification.readthedocs.io/en/stable/appendices/coordinate-systems.html
.. _background on FreeSurfer: https://mne.tools/dev/auto_tutorials/source-modeling/plot_background_freesurfer_mne
.. _MNE-Python coordinate frames: https://mne.tools/dev/auto_tutorials/source-modeling/plot_source_alignment.html
""" # noqa: E501 D400

# Authors: The MNE-BIDS developers
Expand Down
1 change: 0 additions & 1 deletion examples/convert_mri_and_trans.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
.. note:: For this example you will need to install ``matplotlib`` and
``nilearn`` on top of your usual ``mne-bids`` installation.
""" # noqa: E501 D205 D400

# Authors: The MNE-BIDS developers
Expand Down
1 change: 0 additions & 1 deletion examples/convert_nirs_to_bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
4. Cite ``mne-bids``.
.. currentmodule:: mne_bids
""" # noqa: E501 D205 D400

# Authors: The MNE-BIDS developers
Expand Down
1 change: 0 additions & 1 deletion examples/read_bids_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
In this tutorial, we show how ``read_raw_bids`` can be used to load and
inspect BIDS-formatted data.
""" # noqa: D400

# Authors: The MNE-BIDS developers
Expand Down
2 changes: 1 addition & 1 deletion mne_bids/tests/test_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ def test_fif(_bids_validate, tmp_path):
)


@pytest.mark.parametrize("format", ("fif_no_chpi", "fif", "ctf", "kit"))
@pytest.mark.parametrize("fmt", ("fif_no_chpi", "fif", "ctf", "kit"))
@pytest.mark.filterwarnings(warning_str["maxshield"])
@testing.requires_testing_data
def test_chpi(_bids_validate, tmp_path, fmt):
Expand Down
2 changes: 1 addition & 1 deletion mne_bids/write.py
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ def _write_raw_brainvision(raw, bids_fname, events, overwrite):
events=events,
resolution=resolution,
unit=unit,
format=fmt,
fmt=fmt,
meas_date=None,
)

Expand Down

0 comments on commit 05f5e9c

Please sign in to comment.